From 0823fbcae4e09eae74dcb09c7614f9d11e8d153f Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Fri, 31 Aug 2001 21:15:00 +0000 Subject: 2001-08-31 Eric Christopher Jason Eckhardt * mips-dis.c: Add support for bfd_mach_mipsisa32 and bfd_mach_mipsisa64. Remove bfd_mach_mips32, bfd_mach_mips32_4k, bfd_mach_mips64. --- opcodes/ChangeLog | 7 +++++++ opcodes/mips-dis.c | 21 +++++++++------------ 2 files changed, 16 insertions(+), 12 deletions(-) (limited to 'opcodes') diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index e3f28d8..3d95187 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,10 @@ +2001-08-31 Eric Christopher + Jason Eckhardt + + * mips-dis.c: Add support for bfd_mach_mipsisa32 and + bfd_mach_mipsisa64. Remove bfd_mach_mips32, bfd_mach_mips32_4k, + bfd_mach_mips64. + 2001-08-31 Andreas Jaeger * tic54x-opc.c: Add default initializers to avoid warnings. diff --git a/opcodes/mips-dis.c b/opcodes/mips-dis.c index 58b7dcd..9112898 100644 --- a/opcodes/mips-dis.c +++ b/opcodes/mips-dis.c @@ -369,26 +369,23 @@ mips_isa_type (mach, isa, cputype) *cputype = CPU_MIPS16; *isa = ISA_MIPS3; break; - case bfd_mach_mips32: - *cputype = CPU_MIPS32; - *isa = ISA_MIPS32; - break; - case bfd_mach_mips32_4k: - *cputype = CPU_MIPS32_4K; - *isa = ISA_MIPS32; - break; case bfd_mach_mips5: *cputype = CPU_MIPS5; *isa = ISA_MIPS5; break; - case bfd_mach_mips64: - *cputype = CPU_MIPS64; - *isa = ISA_MIPS64; - break; case bfd_mach_mips_sb1: *cputype = CPU_SB1; *isa = ISA_MIPS64; break; + case bfd_mach_mipsisa32: + * cputype = CPU_MIPS32; + * isa = ISA_MIPS32; + break; + case bfd_mach_mipsisa64: + * cputype = CPU_MIPS64; + * isa = ISA_MIPS64; + break; + default: *cputype = CPU_R3000; *isa = ISA_MIPS3; -- cgit v1.1