From 007d5445dff997240b47b4beff01495b3e4ed8d9 Mon Sep 17 00:00:00 2001 From: David Schultz Date: Fri, 18 Jan 2008 22:10:57 +0000 Subject: [PATCH] expm1(-big) generates an inexact exception but not underflow. --- tools/regression/lib/msun/test-exponential.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/regression/lib/msun/test-exponential.c b/tools/regression/lib/msun/test-exponential.c index e5c2beaf0ee9..bd06bb3be66f 100644 --- a/tools/regression/lib/msun/test-exponential.c +++ b/tools/regression/lib/msun/test-exponential.c @@ -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