[INTERP] Added nan handling on AVX.F3.0F 59 opcode

This commit is contained in:
ptitSeb 2025-04-24 11:54:55 +02:00
parent fc381e744e
commit d988a39456

View File

@ -262,7 +262,9 @@ uintptr_t RunAVX_F30F(x64emu_t *emu, vex_t vex, uintptr_t addr, int *step)
GETGX;
GETVX;
GETGY;
MARK_NAN_F_2(VX, EX);
GX->f[0] = VX->f[0] * EX->f[0];
CHECK_NAN_F(GX);
if(GX!=VX) {
GX->ud[1] = VX->ud[1];
GX->q[1] = VX->q[1];