diff options
author | Chris Demetriou <cgd@google.com> | 2002-03-15 06:01:08 +0000 |
---|---|---|
committer | Chris Demetriou <cgd@google.com> | 2002-03-15 06:01:08 +0000 |
commit | eb7b56d007be4ec6a023e18b11e2ac84e6c28b88 (patch) | |
tree | 87956616a166297f70ae81c491560cad9e7fa806 /opcodes | |
parent | a4db0f0748629c825090fda9d4037b615f789917 (diff) | |
download | gdb-eb7b56d007be4ec6a023e18b11e2ac84e6c28b88.zip gdb-eb7b56d007be4ec6a023e18b11e2ac84e6c28b88.tar.gz gdb-eb7b56d007be4ec6a023e18b11e2ac84e6c28b88.tar.bz2 |
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')
-rw-r--r-- | opcodes/ChangeLog | 5 | ||||
-rw-r--r-- | opcodes/mips-dis.c | 8 |
2 files changed, 9 insertions, 4 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 2260544..99aaac2 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +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. + 2002-03-13 Nick Clifton <nickc@cambridge.redhat.com> * po/fr.po: Updated version. diff --git a/opcodes/mips-dis.c b/opcodes/mips-dis.c index 13eb728..5959563 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: |