diff options
author | Chris Demetriou <cgd@broadcom.com> | 2002-03-15 06:01:08 +0000 |
---|---|---|
committer | Chris Demetriou <cgd@broadcom.com> | 2002-03-15 06:01:08 +0000 |
commit | 91290f66e4a08de51b6e300adc2434f44d23f167 (patch) | |
tree | b779e073d47e70b98c446dddd5baf14c9ac90dcb /opcodes/mips-dis.c | |
parent | f296814d51a8140c9cd58eab2256fe5ab6cebd60 (diff) | |
download | binutils-redhat-91290f66e4a08de51b6e300adc2434f44d23f167.tar.gz |
2002-03-14 Chris G. Demetriou <cgd@broadcom.com>
* mips-dis.c (mips_isa_type): Fix formatting of bfd_mach_mipsisa32
and bfd_mach_mipsisa64 cases to match the rest.
Diffstat (limited to 'opcodes/mips-dis.c')
-rw-r--r-- | opcodes/mips-dis.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/opcodes/mips-dis.c b/opcodes/mips-dis.c index 13eb728fcd..5959563a3e 100644 --- a/opcodes/mips-dis.c +++ b/opcodes/mips-dis.c @@ -376,12 +376,12 @@ mips_isa_type (mach, isa, cputype) *isa = ISA_MIPS64 | INSN_SB1; break; case bfd_mach_mipsisa32: - * cputype = CPU_MIPS32; - * isa = ISA_MIPS32; + *cputype = CPU_MIPS32; + *isa = ISA_MIPS32; break; case bfd_mach_mipsisa64: - * cputype = CPU_MIPS64; - * isa = ISA_MIPS64; + *cputype = CPU_MIPS64; + *isa = ISA_MIPS64; break; default: |