aboutsummaryrefslogtreecommitdiff
path: root/opcodes
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2001-05-23 17:26:40 +0000
committerNick Clifton <nickc@redhat.com>2001-05-23 17:26:40 +0000
commitd1cf510e5e1ab5cb49de51ae96ef011ec0ab7510 (patch)
tree9189d3cd2efd6281a0ee083401bc11fa84863dbb /opcodes
parent6c426cf36e042f2ef86fdb7d6c7e5e6a7ddb0e1c (diff)
downloadgdb-d1cf510e5e1ab5cb49de51ae96ef011ec0ab7510.zip
gdb-d1cf510e5e1ab5cb49de51ae96ef011ec0ab7510.tar.gz
gdb-d1cf510e5e1ab5cb49de51ae96ef011ec0ab7510.tar.bz2
Add MIPS r12k support
Diffstat (limited to 'opcodes')
-rw-r--r--opcodes/ChangeLog4
-rw-r--r--opcodes/mips-dis.c4
2 files changed, 8 insertions, 0 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog
index 511dc63..142be15 100644
--- a/opcodes/ChangeLog
+++ b/opcodes/ChangeLog
@@ -1,3 +1,7 @@
+2001-05-16 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
+
+ * mips-dis.c (mips_isa_type): Add MIPS r12k support.
+
2001-05-23 Alan Modra <amodra@one.net.au>
* arc-opc.c: Whitespace changes.
diff --git a/opcodes/mips-dis.c b/opcodes/mips-dis.c
index fc67aa4..3d737f6 100644
--- a/opcodes/mips-dis.c
+++ b/opcodes/mips-dis.c
@@ -360,6 +360,10 @@ mips_isa_type (mach, isa, cputype)
*cputype = CPU_R10000;
*isa = ISA_MIPS4;
break;
+ case bfd_mach_mips12000:
+ *cputype = CPU_R12000;
+ *isa = ISA_MIPS4;
+ break;
case bfd_mach_mips16:
*cputype = CPU_MIPS16;
*isa = ISA_MIPS3;