commit | 22925d93e9c5d6159f24853457c858be5f08af04 | [log] [tgz] |
---|---|---|
author | Owen Anderson <resistor@mac.com> | Tue Nov 15 20:30:41 2011 +0000 |
committer | Owen Anderson <resistor@mac.com> | Tue Nov 15 20:30:41 2011 +0000 |
tree | 900083d9dbff1936e3466e752cd7e90c98936347 | |
parent | a68e90c36e6a53fb1889b608f44d6244a36b3e97 [diff] [blame] |
Fix a misplaced paren bug. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@144692 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/ARM/Disassembler/ARMDisassembler.cpp b/lib/Target/ARM/Disassembler/ARMDisassembler.cpp index 65e2d04..ad250ab 100644 --- a/lib/Target/ARM/Disassembler/ARMDisassembler.cpp +++ b/lib/Target/ARM/Disassembler/ARMDisassembler.cpp
@@ -4095,7 +4095,7 @@ DecodeStatus S = MCDisassembler::Success; // VMOVv2f32 is ambiguous with these decodings. - if (!(imm & 0x38 && cmode == 0xF)) { + if (!(imm & 0x38) && cmode == 0xF) { Inst.setOpcode(ARM::VMOVv2f32); return DecodeNEONModImmInstruction(Inst, Insn, Address, Decoder); }