Don't say nan is equal to anything.

I guess we were passing this because of fastmath?  Fixes interpreter
cpu/fpu/fpu test on Windows anyway.
This commit is contained in:
Unknown W. Brackets 2013-09-13 21:28:59 -07:00
parent 455431ba13
commit 7b71dc54dd

View File

@ -925,7 +925,7 @@ namespace MIPSInt
case 2: //eq
case 10: //seq
cond = (F(fs) == F(ft));
cond = !my_isnan(F(fs)) && !my_isnan(F(ft)) && (F(fs) == F(ft));
break;
case 3: //ueq