diff options
author | Joseph Myers <joseph@codesourcery.com> | 2013-04-26 19:25:19 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2013-04-26 19:25:19 +0000 |
commit | f0302940e7c2acb587971e3c99dfbd00aa4e2134 (patch) | |
tree | 14ca5247684a4ca2ef2ea2f46c4d375cde6aa6b9 /math/s_csinhf.c | |
parent | aa630f590c9c7d070a7cdf3a2a88069ad6b63de9 (diff) | |
download | glibc-f0302940e7c2acb587971e3c99dfbd00aa4e2134.tar.gz glibc-f0302940e7c2acb587971e3c99dfbd00aa4e2134.tar.xz glibc-f0302940e7c2acb587971e3c99dfbd00aa4e2134.zip |
Fix csin, csinh, ccos, ccosh missing underflows (bug 15405).
Diffstat (limited to 'math/s_csinhf.c')
-rw-r--r-- | math/s_csinhf.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/math/s_csinhf.c b/math/s_csinhf.c index 6c58c1d0d2..3658805fcb 100644 --- a/math/s_csinhf.c +++ b/math/s_csinhf.c @@ -88,6 +88,19 @@ __csinhf (__complex__ float x) if (negate) __real__ retval = -__real__ retval; + + if (fabsf (__real__ retval) < FLT_MIN) + { + volatile float force_underflow + = __real__ retval * __real__ retval; + (void) force_underflow; + } + if (fabsf (__imag__ retval) < FLT_MIN) + { + volatile float force_underflow + = __imag__ retval * __imag__ retval; + (void) force_underflow; + } } else { |