JitArm64: Fix subfic

This commit is contained in:
degasus 2015-09-05 12:30:05 +02:00
parent baa28e13f4
commit 696f95d5f9
1 changed files with 0 additions and 6 deletions

View File

@ -867,9 +867,6 @@ void JitArm64::subfic(UGeckoInstruction inst)
gpr.SetImmediate(d, imm - a_imm);
ComputeCarry(a_imm == 0 || Interpreter::Helper_Carry(imm, 0u - a_imm));
if (inst.Rc)
ComputeRC(gpr.GetImm(d), 0);
}
else
{
@ -882,9 +879,6 @@ void JitArm64::subfic(UGeckoInstruction inst)
gpr.Unlock(WA);
ComputeCarry();
if (inst.Rc)
ComputeRC(gpr.R(d), 0);
}
}