From f0302940e7c2acb587971e3c99dfbd00aa4e2134 Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Fri, 26 Apr 2013 19:25:19 +0000 Subject: Fix csin, csinh, ccos, ccosh missing underflows (bug 15405). --- math/s_csinh.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'math/s_csinh.c') diff --git a/math/s_csinh.c b/math/s_csinh.c index be3c6bbb87..5a98f67851 100644 --- a/math/s_csinh.c +++ b/math/s_csinh.c @@ -88,6 +88,19 @@ __csinh (__complex__ double x) if (negate) __real__ retval = -__real__ retval; + + if (fabs (__real__ retval) < DBL_MIN) + { + volatile double force_underflow + = __real__ retval * __real__ retval; + (void) force_underflow; + } + if (fabs (__imag__ retval) < DBL_MIN) + { + volatile double force_underflow + = __imag__ retval * __imag__ retval; + (void) force_underflow; + } } else { -- cgit 1.4.1