This is the mail archive of the binutils@sourceware.org mailing list for the binutils 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] add missing patch to disassemble moxie insns


My original port patch included the ChangeLog entry for this, but I had
somehow forgotten to add the patch fragment.  Committed as obvious.

AG

2009-04-29  Anthony Green <green@moxielogic.com>

	* disassemble.c (disassembler): Add moxie support.
	(ARCH_moxie): Define.


Index: disassemble.c
===================================================================
RCS file: /cvs/src/src/opcodes/disassemble.c,v
retrieving revision 1.70
diff -u -r1.70 disassemble.c
--- disassemble.c	23 Dec 2008 19:10:25 -0000	1.70
+++ disassemble.c	30 Apr 2009 04:51:24 -0000
@@ -60,6 +60,7 @@
 #define ARCH_mmix
 #define ARCH_mn10200
 #define ARCH_mn10300
+#define ARCH_moxie
 #define ARCH_mt
 #define ARCH_msp430
 #define ARCH_ns32k
@@ -440,6 +441,11 @@
       disassemble = print_insn_frv;
       break;
 #endif
+#ifdef ARCH_moxie
+    case bfd_arch_moxie:
+      disassemble = print_insn_moxie;
+      break;
+#endif
 #ifdef ARCH_iq2000
     case bfd_arch_iq2000:
       disassemble = print_insn_iq2000;



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