Merge pull request #982 from FioraAeterna/removedebug

Remove debug printf from earlier commit
This commit is contained in:
Pierre Bourdon 2014-09-05 19:36:14 +02:00
commit bb60cafd40

View file

@ -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();
}