forked from Imagelibrary/binutils-gdb
* alpha-dis.c (print_insn_alpha): Also mask the base opcode for
comparison.
This commit is contained in:
@@ -118,7 +118,7 @@ print_insn_alpha (memaddr, info)
|
||||
opcode_end = opcode_index[op + 1];
|
||||
for (opcode = opcode_index[op]; opcode < opcode_end; ++opcode)
|
||||
{
|
||||
if ((insn & opcode->mask) != opcode->opcode)
|
||||
if ((insn ^ opcode->opcode) & opcode->mask)
|
||||
continue;
|
||||
|
||||
if (!(opcode->flags & isa_mask))
|
||||
|
||||
Reference in New Issue
Block a user