mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 16:19:28 +01:00
Jit64: Fix immediates being zero-extended to cr_val instead of sign-extended. Thanks to konpie for finding this issue.
This commit is contained in:
parent
0bcebd81f6
commit
ae27d36961
@ -122,7 +122,7 @@ void Jit64::ComputeRC(const Gen::OpArg & arg)
|
|||||||
{
|
{
|
||||||
if (arg.IsImm())
|
if (arg.IsImm())
|
||||||
{
|
{
|
||||||
MOV(32, R(EAX), Imm32((s32)arg.offset));
|
MOV(64, R(RAX), Imm32((s32)arg.offset));
|
||||||
MOV(64, M(&PowerPC::ppcState.cr_val[0]), R(RAX));
|
MOV(64, M(&PowerPC::ppcState.cr_val[0]), R(RAX));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@ -394,7 +394,7 @@ void Jit64::cmpXX(UGeckoInstruction inst)
|
|||||||
if (signedCompare)
|
if (signedCompare)
|
||||||
{
|
{
|
||||||
if (gpr.R(a).IsImm())
|
if (gpr.R(a).IsImm())
|
||||||
MOV(64, R(RAX), gpr.R(a));
|
MOV(64, R(RAX), Imm32((s32)gpr.R(a).offset));
|
||||||
else
|
else
|
||||||
MOVSX(64, 32, RAX, gpr.R(a));
|
MOVSX(64, 32, RAX, gpr.R(a));
|
||||||
if (!comparand.IsImm())
|
if (!comparand.IsImm())
|
||||||
|
Loading…
x
Reference in New Issue
Block a user