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 bf176d7ca8fdf3122ae102bdd0dc37dfb7862682..fd4e6e061d46f159cd1ddc9cd048a7aa61ddb1c9 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 d5b17be325318277a8eca3555d2ffe1c55ab7904..b9cf575162373cc1a8ad64e74eca94e82e951032 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;
This page took 0.027473 seconds and 4 git commands to generate.