* disassemble.c (disassembler): Refer to the PowerPC 620 using
authorNicholas Duffek <nsd@redhat.com>
Fri, 16 Jun 2000 20:46:47 +0000 (20:46 +0000)
committerNicholas Duffek <nsd@redhat.com>
Fri, 16 Jun 2000 20:46:47 +0000 (20:46 +0000)
bfd_mach_ppc_620 instead of 620.

opcodes/ChangeLog
opcodes/disassemble.c

index f02f542..fcf7bc8 100644 (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.
index 072aa42..3f463c9 100644 (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;