Merge pull request #1619 from FioraAeterna/removepxor

JIT: remove unnecessary pxor in paired stores
This commit is contained in:
Lioncash 2014-12-01 15:50:31 -05:00
commit af5b1063bf
1 changed files with 0 additions and 1 deletions

View File

@ -66,7 +66,6 @@ void Jit64::psq_stXX(UGeckoInstruction inst)
if (w) if (w)
{ {
// One value // One value
PXOR(XMM0, R(XMM0)); // TODO: See if we can get rid of this cheaply by tweaking the code in the singleStore* functions.
CVTSD2SS(XMM0, fpr.R(s)); CVTSD2SS(XMM0, fpr.R(s));
CALLptr(MScaled(RSCRATCH, SCALE_8, (u32)(u64)asm_routines.singleStoreQuantized)); CALLptr(MScaled(RSCRATCH, SCALE_8, (u32)(u64)asm_routines.singleStoreQuantized));
} }