Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #982 from FioraAeterna/removedebug
Remove debug printf from earlier commit
  • Loading branch information
delroth committed Sep 5, 2014
2 parents 58c669a + 8011533 commit bb60caf
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions Source/Core/Core/PowerPC/Jit64/Jit_FloatingPoint.cpp
Expand Up @@ -394,19 +394,15 @@ void Jit64::fresx(UGeckoInstruction inst)
FALLBACK_IF(inst.Rc);
int b = inst.FB;
int d = inst.FD;
static double test[2];

// resx requires ECX and EDX free
gpr.FlushLockX(ECX, EDX);
fpr.Lock(b, d);
fpr.BindToRegister(d, d == b);
MOVSD(XMM0, fpr.R(b));
MOVSD(M(&test[0]), XMM0);
CALL((void *)asm_routines.fres);
MOVSD(M(&test[1]), XMM0);
MOVSD(fpr.R(d), XMM0);
SetFPRFIfNeeded(inst, fpr.RX(d));
ERROR_LOG(COMMON, "%f %f\n", test[0], test[1]);
fpr.UnlockAll();
gpr.UnlockAllX();
}

0 comments on commit bb60caf

Please sign in to comment.