mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-17 07:22:54 +00:00
Oops - correct broken disassembly for VMOV
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@159945 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2e7e34ba54
commit
83cfff6229
@ -4226,7 +4226,7 @@ static DecodeStatus DecodeVMOVRRS(MCInst &Inst, unsigned Insn,
|
||||
unsigned Rt2 = fieldFromInstruction32(Insn, 16, 4);
|
||||
unsigned Rm = fieldFromInstruction32(Insn, 5, 1);
|
||||
unsigned pred = fieldFromInstruction32(Insn, 28, 4);
|
||||
Rm |= fieldFromInstruction32(Insn, 0, 4) << 4;
|
||||
Rm |= fieldFromInstruction32(Insn, 0, 4) << 1;
|
||||
|
||||
if (Rt == 0xF || Rt2 == 0xF || Rm == 0x1F)
|
||||
S = MCDisassembler::SoftFail;
|
||||
|
Loading…
x
Reference in New Issue
Block a user