JitArm64: Fix mcrxr
Likely an incorrect translation of Jit64's LEA with SCALE_2.
This commit is contained in:
parent
ed7894924c
commit
5ea1cc5406
|
@ -143,7 +143,7 @@ void JitArm64::mcrxr(UGeckoInstruction inst)
|
|||
LDRB(IndexType::Unsigned, WB, PPC_REG, PPCSTATE_OFF(xer_so_ov));
|
||||
|
||||
// [0 SO OV CA]
|
||||
ADD(WA, WA, WB, ArithOption(WB, ShiftType::LSL, 2));
|
||||
ADD(WA, WA, WB, ArithOption(WB, ShiftType::LSL, 1));
|
||||
// [SO OV CA 0] << 3
|
||||
LSL(WA, WA, 4);
|
||||
|
||||
|
|
Loading…
Reference in New Issue