mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 23:29:44 -06:00
JitArm64: Fix subfic
This commit is contained in:
@ -867,9 +867,6 @@ void JitArm64::subfic(UGeckoInstruction inst)
|
|||||||
|
|
||||||
gpr.SetImmediate(d, imm - a_imm);
|
gpr.SetImmediate(d, imm - a_imm);
|
||||||
ComputeCarry(a_imm == 0 || Interpreter::Helper_Carry(imm, 0u - a_imm));
|
ComputeCarry(a_imm == 0 || Interpreter::Helper_Carry(imm, 0u - a_imm));
|
||||||
|
|
||||||
if (inst.Rc)
|
|
||||||
ComputeRC(gpr.GetImm(d), 0);
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -882,9 +879,6 @@ void JitArm64::subfic(UGeckoInstruction inst)
|
|||||||
gpr.Unlock(WA);
|
gpr.Unlock(WA);
|
||||||
|
|
||||||
ComputeCarry();
|
ComputeCarry();
|
||||||
|
|
||||||
if (inst.Rc)
|
|
||||||
ComputeRC(gpr.R(d), 0);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user