diff options
author | Eric Christopher <echristo@apple.com> | 2001-08-31 21:12:34 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2001-08-31 21:12:34 +0000 |
commit | 7d6402c25633ea575d73e5781d7b990d8c9fdf71 (patch) | |
tree | ae1e857d333e9c55fe80d8b168e6711649f46427 /opcodes/mips-dis.c | |
parent | 4901ea35d3f0c541f77ca05d3643ca586dea414d (diff) | |
download | gdb-7d6402c25633ea575d73e5781d7b990d8c9fdf71.tar.gz |
2001-08-31 Eric Christopher <echristo@redhat.com>
Jason Eckhardt <jle@redhat.com>
* mips-dis.c: Add support for bfd_mach_mipsisa32 and
bfd_mach_mipsisa64. Remove bfd_mach_mips32, bfd_mach_mips32_4k,
bfd_mach_mips64.
Diffstat (limited to 'opcodes/mips-dis.c')
-rw-r--r-- | opcodes/mips-dis.c | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/opcodes/mips-dis.c b/opcodes/mips-dis.c index 58b7dcd2d56..9112898204b 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; |