OSDN Git Service

2003-07-21 Richard Sandiford <rsandifo@redhat.com>
authorAlexandre Oliva <aoliva@redhat.com>
Sun, 27 Jun 2004 06:31:22 +0000 (06:31 +0000)
committerAlexandre Oliva <aoliva@redhat.com>
Sun, 27 Jun 2004 06:31:22 +0000 (06:31 +0000)
* disassemble.c (disassembler): Handle bfd_mach_h8300sxn.

opcodes/ChangeLog
opcodes/disassemble.c

index bf176d7..fd4e6e0 100644 (file)
@@ -1,3 +1,8 @@
+2004-06-27  Alexandre Oliva  <aoliva@redhat.com>
+
+       2003-07-21  Richard Sandiford  <rsandifo@redhat.com>
+       * disassemble.c (disassembler): Handle bfd_mach_h8300sxn.
+
 2004-06-26  Alan Modra  <amodra@bigpond.net.au>
 
        * ppc-opc.c (BH, XLBH_MASK): Define.
index d5b17be..b9cf575 100644 (file)
@@ -146,7 +146,8 @@ disassembler (abfd)
        disassemble = print_insn_h8300h;
       else if (bfd_get_mach (abfd) == bfd_mach_h8300s
               || bfd_get_mach (abfd) == bfd_mach_h8300sn
-              || bfd_get_mach (abfd) == bfd_mach_h8300sx)
+              || bfd_get_mach (abfd) == bfd_mach_h8300sx
+              || bfd_get_mach (abfd) == bfd_mach_h8300sxn)
        disassemble = print_insn_h8300s;
       else
        disassemble = print_insn_h8300;