diff options
author | Kuan-Lin Chen <kuanlinchentw@gmail.com> | 2017-09-11 13:46:27 +0800 |
---|---|---|
committer | Kuan-Lin Chen <kuanlinchentw@gmail.com> | 2017-09-11 13:46:27 +0800 |
commit | 4ec521f238627f7682306d699c8826390a2cc9e7 (patch) | |
tree | 588cf236fbd0cc862c7d91e856bec4e19c136c8e /opcodes/nds32-dis.c | |
parent | 555cb1688148f41582b1e7e9af57e2fc3fbf21bf (diff) | |
download | gdb-4ec521f238627f7682306d699c8826390a2cc9e7.zip gdb-4ec521f238627f7682306d699c8826390a2cc9e7.tar.gz gdb-4ec521f238627f7682306d699c8826390a2cc9e7.tar.bz2 |
nds32: Rename __BIT() to N32_BIT().
Diffstat (limited to 'opcodes/nds32-dis.c')
-rw-r--r-- | opcodes/nds32-dis.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/opcodes/nds32-dis.c b/opcodes/nds32-dis.c index 4ee3bb5..4667967 100644 --- a/opcodes/nds32-dis.c +++ b/opcodes/nds32-dis.c @@ -759,10 +759,10 @@ nds32_mask_opcode (uint32_t insn) return MASK_OP (insn, 0); case N32_OP6_ALU2: /* FFBI */ - if (__GF (insn, 0, 7) == (N32_ALU2_FFBI | __BIT (6))) + if (__GF (insn, 0, 7) == (N32_ALU2_FFBI | N32_BIT (6))) return MASK_OP (insn, 0x7f); - else if (__GF (insn, 0, 7) == (N32_ALU2_MFUSR | __BIT (6)) - || __GF (insn, 0, 7) == (N32_ALU2_MTUSR | __BIT (6))) + else if (__GF (insn, 0, 7) == (N32_ALU2_MFUSR | N32_BIT (6)) + || __GF (insn, 0, 7) == (N32_ALU2_MTUSR | N32_BIT (6))) /* RDOV CLROV */ return MASK_OP (insn, 0xf81ff); return MASK_OP (insn, 0x1ff); |