* m10300-dis.c: Only recognize instructions from the currently

selected machine.
        * m10300-opc.c: Add field indicating the particular variant of
        the mn10300 each instruction is available on.
This commit is contained in:
Jeff Law 1998-06-26 17:12:10 +00:00
parent 4db4e912e1
commit 0c9b3858c1
3 changed files with 721 additions and 699 deletions

View File

@ -1,3 +1,10 @@
Fri Jun 26 11:08:55 1998 Jeffrey A Law (law@cygnus.com)
* m10300-dis.c: Only recognize instructions from the currently
selected machine.
* m10300-opc.c: Add field indicating the particular variant of
the mn10300 each instruction is available on.
Fri Jun 26 12:04:21 1998 Ian Lance Taylor <ian@cygnus.com>
* configure.in: For bfd_vax_arch, build vax-dis.lo.

View File

@ -254,7 +254,9 @@ disassemble (memaddr, info, insn, size)
mysize = 7;
if ((op->mask & insn) == op->opcode
&& size == (unsigned int) mysize)
&& size == (unsigned int) mysize
&& (op->machine == 0
|| op->machine == info->mach))
{
const unsigned char *opindex_ptr;
unsigned int nocomma;

File diff suppressed because it is too large Load Diff