This is the mail archive of the
gdb-patches@sources.redhat.com
mailing list for the GDB project.
[patch] "lost" opcodes patch for h8300sx
- From: Michael Snyder <msnyder at redhat dot com>
- To: gdb-patches at sources dot redhat dot com, binutils at sources dot redhat dot com
- Date: Fri, 10 Oct 2003 15:15:09 -0700
- Subject: [patch] "lost" opcodes patch for h8300sx
- Organization: Red Hat, Inc.
With some embarassment, this seems to be a change that I
forgot to check in, back in June.
2003-06-03 Michael Snyder <msnyder@redhat.com>
and Bernd Schmidt <bernds@redhat.com>
and Alexandre Oliva <aoliva@redhat.com>
* disassemble.c (disassembler): Add support for h8300sx.
Index: disassemble.c
===================================================================
RCS file: /cvs/src/src/opcodes/disassemble.c,v
retrieving revision 1.43
diff -p -r1.43 disassemble.c
*** disassemble.c 12 May 2003 11:57:32 -0000 1.43
--- disassemble.c 10 Oct 2003 22:12:35 -0000
*************** disassembler (abfd)
*** 145,151 ****
|| bfd_get_mach (abfd) == bfd_mach_h8300hn)
disassemble = print_insn_h8300h;
else if (bfd_get_mach (abfd) == bfd_mach_h8300s
! || bfd_get_mach (abfd) == bfd_mach_h8300sn)
disassemble = print_insn_h8300s;
else
disassemble = print_insn_h8300;
--- 145,152 ----
|| bfd_get_mach (abfd) == bfd_mach_h8300hn)
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)
disassemble = print_insn_h8300s;
else
disassemble = print_insn_h8300;