diff options
author | Joseph Myers <joseph@codesourcery.com> | 2013-12-03 20:50:51 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2013-12-03 20:50:51 +0000 |
commit | 17dea1887fcc116941e07cb0f5f2078140ab0384 (patch) | |
tree | 1b7f0def9e7037e6e97efc4419df028a852e314c /math/auto-libm-test-in | |
parent | b20de2c3d9d751eb259c321426188eefc64fcbe9 (diff) | |
download | glibc-17dea1887fcc116941e07cb0f5f2078140ab0384.zip glibc-17dea1887fcc116941e07cb0f5f2078140ab0384.tar.gz glibc-17dea1887fcc116941e07cb0f5f2078140ab0384.tar.bz2 |
Fix exp2 errno setting on underflow (bug 16283).
Diffstat (limited to 'math/auto-libm-test-in')
-rw-r--r-- | math/auto-libm-test-in | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/math/auto-libm-test-in b/math/auto-libm-test-in index 126a9ea..83832a7 100644 --- a/math/auto-libm-test-in +++ b/math/auto-libm-test-in @@ -203,22 +203,18 @@ exp2 -0 exp2 10 exp2 -1 exp2 1e6 -# Bug 16283: errno may not be set on underflow. -exp2 -1e6 missing-errno +exp2 -1e6 exp2 max -# Bug 16283: errno may not be set on underflow. -exp2 -max missing-errno +exp2 -max exp2 0.75 exp2 100.5 exp2 127 exp2 -149 exp2 1000.25 exp2 1023 -# Bug 16283: errno may not be set on underflow. -exp2 -1074 missing-errno +exp2 -1074 exp2 16383 -# Bug 16283: errno may not be set on underflow. -exp2 -16400 missing-errno +exp2 -16400 expm1 0 expm1 -0 |