JitArm64: Fix mistaken use of LSL imm
This commit is contained in:
parent
efeda3b759
commit
761d7748b6
|
@ -1494,7 +1494,7 @@ void JitArm64::srawx(UGeckoInstruction inst)
|
||||||
|
|
||||||
MOVI2R(WA, 32);
|
MOVI2R(WA, 32);
|
||||||
SUB(WC, WA, WC);
|
SUB(WC, WA, WC);
|
||||||
LSL(WC, RS, WC);
|
LSLV(WC, RS, WC);
|
||||||
CMP(WC, 0);
|
CMP(WC, 0);
|
||||||
CSET(WA, CC_NEQ);
|
CSET(WA, CC_NEQ);
|
||||||
FixupBranch end = B();
|
FixupBranch end = B();
|
||||||
|
|
Loading…
Reference in New Issue