* gas/macros/macros.exp (strings): Update xfails.
[deliverable/binutils-gdb.git] / opcodes / alpha-dis.c
index 630454d2b86b6712c37f358a8be4b5c0f53fd2c6..49b5f20d2e7608afa775744da591a4413ed7e5a7 100644 (file)
@@ -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))
This page took 0.024312 seconds and 4 git commands to generate.