Remove debug printf from earlier commit
This commit is contained in:
parent
58c669aa02
commit
801153301f
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue