diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2000-04-20 22:15:32 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2000-04-20 22:15:32 +0000 |
commit | 4d85706b80e7cd6f57188f78339e00f44d4da27a (patch) | |
tree | 5a59afefe565b58c6cf894c94d1502bcf1c9b61a /opcodes/m10300-dis.c | |
parent | 41c49b06c471443d3baf2eaa2463a315f9b5edca (diff) | |
download | gdb-4d85706b80e7cd6f57188f78339e00f44d4da27a.zip gdb-4d85706b80e7cd6f57188f78339e00f44d4da27a.tar.gz gdb-4d85706b80e7cd6f57188f78339e00f44d4da27a.tar.bz2 |
* m10300-dis.c (HAVE_AM30, HAVE_AM33): Define.
(disassemble): Use them.
Diffstat (limited to 'opcodes/m10300-dis.c')
-rw-r--r-- | opcodes/m10300-dis.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/opcodes/m10300-dis.c b/opcodes/m10300-dis.c index 1346b69..554d328 100644 --- a/opcodes/m10300-dis.c +++ b/opcodes/m10300-dis.c @@ -26,6 +26,9 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ static void disassemble PARAMS ((bfd_vma, struct disassemble_info *, unsigned long insn, unsigned int)); +#define HAVE_AM33 (info->mach == AM33) +#define HAVE_AM30 (info->mach == AM30) + int print_insn_mn10300 (memaddr, info) bfd_vma memaddr; @@ -250,7 +253,8 @@ disassemble (memaddr, info, insn, size) if ((op->mask & insn) == op->opcode && size == (unsigned int) mysize && (op->machine == 0 - || op->machine == info->mach)) + || (op->machine == AM33 && HAVE_AM33) + || (op->machine == AM30 && HAVE_AM30))) { const unsigned char *opindex_ptr; unsigned int nocomma; |