Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[ARM] Clean up some host side register allocations I missed.
  • Loading branch information
Sonicadvance1 committed Sep 7, 2013
1 parent cf09974 commit 614a7c2
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
Expand Up @@ -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);
}

Expand Down
3 changes: 0 additions & 3 deletions Source/Core/Core/Src/PowerPC/JitArm32/JitArm_Paired.cpp
Expand Up @@ -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);
}

0 comments on commit 614a7c2

Please sign in to comment.