]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* 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 f02f542add99b4aceefe7b3860817ce7afceafde..fcf7bc83ec995800a4593f33ec43c0954df4b56f 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 072aa42d4ba45eb7d23795caaa248728b86ecff6..3f463c9306f869ffa2cbf6375d2acae10157df6f 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;