mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-04 23:29:17 +00:00
JitArm64: Fix subfic
This commit is contained in:
parent
baa28e13f4
commit
696f95d5f9
1 changed files with 0 additions and 6 deletions
|
@ -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);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue