_fpclass never returns SNaN class, but only QNaN class.
This fixes 4 more tests

svn path=/trunk/; revision=54433
This commit is contained in:
Pierre Schweitzer 2011-11-19 10:49:11 +00:00
parent b0adad4294
commit 744a62956f

View file

@ -48,5 +48,5 @@ int _fpclass(double __d)
return _FPCLASS_QNAN;
}
}
return _FPCLASS_SNAN;
return _FPCLASS_QNAN;
}