* disassemble.c (disassembler): Refer to the PowerPC 620 using

bfd_mach_ppc_620 instead of 620.
This commit is contained in:
Nicholas Duffek 2000-06-16 20:46:47 +00:00
parent 87f33987cd
commit 39c20e8f1e
2 changed files with 6 additions and 1 deletions

View File

@ -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.

View File

@ -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;