mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-08 21:32:39 +00:00
Fix a misplaced paren bug.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@144692 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a68e90c36e
commit
22925d93e9
@ -4095,7 +4095,7 @@ static DecodeStatus DecodeVCVTD(llvm::MCInst &Inst, unsigned Insn,
|
|||||||
DecodeStatus S = MCDisassembler::Success;
|
DecodeStatus S = MCDisassembler::Success;
|
||||||
|
|
||||||
// VMOVv2f32 is ambiguous with these decodings.
|
// VMOVv2f32 is ambiguous with these decodings.
|
||||||
if (!(imm & 0x38 && cmode == 0xF)) {
|
if (!(imm & 0x38) && cmode == 0xF) {
|
||||||
Inst.setOpcode(ARM::VMOVv2f32);
|
Inst.setOpcode(ARM::VMOVv2f32);
|
||||||
return DecodeNEONModImmInstruction(Inst, Insn, Address, Decoder);
|
return DecodeNEONModImmInstruction(Inst, Insn, Address, Decoder);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user