x86jit: Use ANDPS for abs.s.

Should be faster considering they're likely to use other floating point
math on it.  As long as that's the case, this is faster than PAND.
This commit is contained in:
Unknown W. Brackets 2015-04-10 13:20:52 -07:00
parent 1bd20723cf
commit 9069c84928

View File

@ -271,7 +271,7 @@ void Jit::Comp_FPU2op(MIPSOpcode op) {
if (fd != fs) {
MOVSS(fpr.RX(fd), fpr.R(fs));
}
PAND(fpr.RX(fd), M(ssNoSignMask));
ANDPS(fpr.RX(fd), M(ssNoSignMask));
break;
case 6: //F(fd) = F(fs); break; //mov