This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch] "lost" opcodes patch for h8300sx


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;

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]