mirror of
https://github.com/libretro/ppsspp.git
synced 2024-12-01 21:56:17 +00:00
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:
parent
1bd20723cf
commit
9069c84928
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user