diff options
Diffstat (limited to 'opcodes/h8300-dis.c')
-rw-r--r-- | opcodes/h8300-dis.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/opcodes/h8300-dis.c b/opcodes/h8300-dis.c index 84f4aadc72d..435d4c0054e 100644 --- a/opcodes/h8300-dis.c +++ b/opcodes/h8300-dis.c @@ -165,11 +165,11 @@ bfd_h8_disassemble (addr, info, mode) if (looking_for & DBIT) { - if ((looking_for & 5) != (thisnib &5)) goto fail; + if ((looking_for & 5) != (thisnib & 5)) goto fail; abs = (thisnib & 0x8) ? 2 : 1; } - else if (looking_for & (REG | IND|INC|DEC)) + else if (looking_for & (REG | IND|INC|DEC)) { if (looking_for & SRC) { |