diff options
author | Nick Clifton <nickc@redhat.com> | 2000-12-02 00:55:22 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2000-12-02 00:55:22 +0000 |
commit | 84ea6cf2c5170547163a4bf09ac2bbb3cd424685 (patch) | |
tree | 1fb075a0ae4d0564fa882e22e5fad7cb13c0de9a /opcodes | |
parent | 481294f002ca17aecedd61f586ddef21b278a634 (diff) | |
download | ppe42-binutils-84ea6cf2c5170547163a4bf09ac2bbb3cd424685.tar.gz ppe42-binutils-84ea6cf2c5170547163a4bf09ac2bbb3cd424685.zip |
Add MIPS V and MIPS 64 machine numbers
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 4 | ||||
-rw-r--r-- | opcodes/mips-dis.c | 8 | ||||
-rw-r--r-- | opcodes/mips-opc.c | 1 | ||||
-rw-r--r-- | opcodes/po/opcodes.pot | 2 |
4 files changed, 14 insertions, 1 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index a03baa3eca..5754a5affb 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -25,6 +25,10 @@ (P4): Delete. (mips_builtin_opcodes) Replace all uses of P4 with I32. + * mips-dis.c (set_mips_isa_type): Add cases for + bfd_mach_mips5 and bfd_mach_mips64. + * mips-opc.c (I64): New definitions. + 2000-11-28 Hans-Peter Nilsson <hp@bitrange.com> * sh-dis.c (print_insn_ddt): Make insn_x, insn_y unsigned. diff --git a/opcodes/mips-dis.c b/opcodes/mips-dis.c index bb970ef548..61f67880e1 100644 --- a/opcodes/mips-dis.c +++ b/opcodes/mips-dis.c @@ -363,6 +363,14 @@ set_mips_isa_type (mach, isa, cputype) target_processor = CPU_MIPS32_4K; mips_isa = ISA_MIPS32; break; + case bfd_mach_mips5: + target_processor = CPU_MIPS5; + mips_isa = ISA_MIPS5; + break; + case bfd_mach_mips64: + target_processor = CPU_MIPS64; + mips_isa = ISA_MIPS64; + break; default: target_processor = CPU_R3000; mips_isa = ISA_MIPS3; diff --git a/opcodes/mips-opc.c b/opcodes/mips-opc.c index 622a2316b9..9d7c746ea0 100644 --- a/opcodes/mips-opc.c +++ b/opcodes/mips-opc.c @@ -78,6 +78,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * #define I4 INSN_ISA4 #define I5 INSN_ISA5 #define I32 INSN_ISA32 +#define I64 INSN_ISA64 #define P3 INSN_4650 #define L1 INSN_4010 diff --git a/opcodes/po/opcodes.pot b/opcodes/po/opcodes.pot index f65a42b353..9d0a2fe66f 100644 --- a/opcodes/po/opcodes.pot +++ b/opcodes/po/opcodes.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-12-01 13:18-0800\n" +"POT-Creation-Date: 2000-12-01 16:51-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" |