diff options
author | Maxim Kuvyrkov <maxim@kugelworks.com> | 2012-03-24 01:09:28 +0000 |
---|---|---|
committer | Maxim Kuvyrkov <maxim@kugelworks.com> | 2012-03-24 01:09:28 +0000 |
commit | 55a36193d878a8e8af3d78c5fcd338293c6c029f (patch) | |
tree | d938fa8d5fb27bd6d499fa167cee93d19054f09c /gas/config | |
parent | b25d0f6e19daa699f3c015e44084b343958cf5d2 (diff) | |
download | gdb-55a36193d878a8e8af3d78c5fcd338293c6c029f.zip gdb-55a36193d878a8e8af3d78c5fcd338293c6c029f.tar.gz gdb-55a36193d878a8e8af3d78c5fcd338293c6c029f.tar.bz2 |
gas/
* config/tc-mips.c (mips_cpu_info_table): Add entry for Broadcom XLP.
* doc/c-mips.texi: Mention XLP.
opcodes/
* mips-dis.c (mips_arch_choices): Add entry for Broadcom XLP.
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-mips.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index f23835a..449d8c3 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -19115,6 +19115,11 @@ static const struct mips_cpu_info mips_cpu_info_table[] = /* RMI Xlr */ { "xlr", 0, ISA_MIPS64, CPU_XLR }, + /* Broadcom XLP. + XLP is mostly like XLR, with the prominent exception that it is + MIPS64R2 rather than MIPS64. */ + { "xlp", 0, ISA_MIPS64R2, CPU_XLR }, + /* End marker */ { NULL, 0, 0, 0 } }; |