diff options
author | Joseph Myers <joseph@codesourcery.com> | 2013-04-26 19:26:22 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2013-04-26 19:26:22 +0000 |
commit | 9457fd952cafc701375fc9fae575a4aca1374de3 (patch) | |
tree | 0116832c92205eb0c42197ce9c269a7f52d09c5e /ChangeLog | |
parent | f0302940e7c2acb587971e3c99dfbd00aa4e2134 (diff) | |
download | glibc-9457fd952cafc701375fc9fae575a4aca1374de3.tar.gz glibc-9457fd952cafc701375fc9fae575a4aca1374de3.tar.xz glibc-9457fd952cafc701375fc9fae575a4aca1374de3.zip |
Fix catan, catanh missing underflows (bug 15406).
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 1996e6c04a..225236c6d8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,27 @@ 2013-04-26 Joseph Myers <joseph@codesourcery.com> + [BZ #15406] + * math/s_catan.c: Include <float.h>. + (__catan): Ensure underflow exception occurs for underflowed + result. + * math/s_catanf.c: Include <float.h>. + (__catanf): Ensure underflow exception occurs for underflowed + result. + * math/s_catanh.c: Include <float.h>. + (__catanh): Ensure underflow exception occurs for underflowed + result. + * math/s_catanhf.c: Include <float.h>. + (__catanhf): Ensure underflow exception occurs for underflowed + result. + * math/s_catanhl.c: Include <float.h>. + (__catanhl): Ensure underflow exception occurs for underflowed + result. + * math/s_catanl.c: Include <float.h>. + (__catanl): Ensure underflow exception occurs for underflowed + result. + * math/libm-test.inc (catan_test): Add more tests. + (catanh_test): Likewise. + [BZ #15405] * math/s_ccosh.c (__ccosh): Ensure underflow exception occurs for underflowed result. |