diff options
author | Joseph Myers <joseph@codesourcery.com> | 2013-03-14 17:47:30 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2013-03-14 17:47:30 +0000 |
commit | 41c7328e851ffc090dbbc4db707c0e8dfa0ae870 (patch) | |
tree | 7fc0e767c62b7135174b9d52962814d029acb85e /math | |
parent | cbc105f8b590fa5f5343160ef0a33dde6366c427 (diff) | |
download | glibc-41c7328e851ffc090dbbc4db707c0e8dfa0ae870.tar glibc-41c7328e851ffc090dbbc4db707c0e8dfa0ae870.tar.gz glibc-41c7328e851ffc090dbbc4db707c0e8dfa0ae870.tar.bz2 glibc-41c7328e851ffc090dbbc4db707c0e8dfa0ae870.zip |
Fix spurious underflow exceptions for Bessel functions for double (bug 14155).
Diffstat (limited to 'math')
-rw-r--r-- | math/libm-test.inc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/math/libm-test.inc b/math/libm-test.inc index 6ac3cd2d0b..132a540e28 100644 --- a/math/libm-test.inc +++ b/math/libm-test.inc @@ -6239,8 +6239,7 @@ j0_test (void) TEST_f_f (j0, 4.0, -3.9714980986384737228659076845169804197562E-1L); TEST_f_f (j0, -4.0, -3.9714980986384737228659076845169804197562E-1L); - /* Bug 14155: spurious exception may occur. */ - TEST_f_f (j0, 0x1.d7ce3ap+107L, 2.775523647291230802651040996274861694514e-17L, UNDERFLOW_EXCEPTION_OK); + TEST_f_f (j0, 0x1.d7ce3ap+107L, 2.775523647291230802651040996274861694514e-17L); #ifndef TEST_FLOAT /* Bug 14155: spurious exception may occur. */ @@ -10494,8 +10493,7 @@ y1_test (void) TEST_f_f (y1, 8.0, -0.158060461731247494255555266187483550L); TEST_f_f (y1, 10.0, 0.249015424206953883923283474663222803L); - /* Bug 14155: spurious exception may occur. */ - TEST_f_f (y1, 0x1.27e204p+99L, -8.881610148467797208469612080785210013461e-16L, UNDERFLOW_EXCEPTION_OK); + TEST_f_f (y1, 0x1.27e204p+99L, -8.881610148467797208469612080785210013461e-16L); #ifndef TEST_FLOAT /* Bug 14155: spurious exception may occur. */ |