expm1(-big) generates an inexact exception but not underflow.

This commit is contained in:
David Schultz 2008-01-18 22:10:57 +00:00
parent 86543395c1
commit 007d5445df
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=175467

View File

@ -120,7 +120,7 @@ run_generic_tests(void)
/* exp(small) == 0, underflow and inexact exceptions */
testall0(-50000.0, 0.0, ALL_STD_EXCEPT, FE_UNDERFLOW | FE_INEXACT);
testall1(-50000.0, -1.0, ALL_STD_EXCEPT, FE_UNDERFLOW | FE_INEXACT);
testall1(-50000.0, -1.0, ALL_STD_EXCEPT, FE_INEXACT);
}
void