[ARM] Clean up some host side register allocations I missed.

This commit is contained in:
Ryan Houdek 2013-09-07 01:27:17 +00:00
parent cf09974d61
commit 614a7c2081
2 changed files with 0 additions and 5 deletions

View File

@ -58,12 +58,10 @@ void JitArm::fnabsx(UGeckoInstruction inst)
ARMReg vB = fpr.R0(inst.FB);
ARMReg vD = fpr.R0(inst.FD, false);
ARMReg V0 = fpr.GetReg();
VABS(vD, vB);
VNEG(vD, vD);
fpr.Unlock(V0);
if (inst.Rc) Helper_UpdateCR1(vD);
}

View File

@ -353,12 +353,9 @@ void JitArm::ps_nabs(UGeckoInstruction inst)
ARMReg vB1 = fpr.R1(b);
ARMReg vD0 = fpr.R0(d, false);
ARMReg vD1 = fpr.R1(d, false);
ARMReg V0 = fpr.GetReg();
VABS(vD0, vB0);
VNEG(vD0, vD0);
VABS(vD1, vB1);
VNEG(vD1, vD1);
fpr.Unlock(V0);
}