diff options
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 5 | ||||
-rw-r--r-- | opcodes/disassemble.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index f02f542..fcf7bc8 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +2000-06-16 Nick Duffek <nsd@redhat.com> + + * disassemble.c (disassembler): Refer to the PowerPC 620 using + bfd_mach_ppc_620 instead of 620. + 2000-06-12 Kazu Hirata <kazu@hxi.com> * h8300-dis.c: Fix formatting. diff --git a/opcodes/disassemble.c b/opcodes/disassemble.c index 072aa42..3f463c9 100644 --- a/opcodes/disassemble.c +++ b/opcodes/disassemble.c @@ -217,7 +217,7 @@ disassembler (abfd) #endif #ifdef ARCH_rs6000 case bfd_arch_rs6000: - if (bfd_get_mach (abfd) == 620) + if (bfd_get_mach (abfd) == bfd_mach_ppc_620) disassemble = print_insn_big_powerpc; else disassemble = print_insn_rs6000; |