diff options
Diffstat (limited to 'math/s_csin.c')
-rw-r--r-- | math/s_csin.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/math/s_csin.c b/math/s_csin.c index e926d7e185..e6583bc81b 100644 --- a/math/s_csin.c +++ b/math/s_csin.c @@ -89,18 +89,7 @@ __csin (__complex__ double x) __imag__ retval = __ieee754_sinh (__imag__ x) * cosix; } - 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; - } + math_check_force_underflow_complex (retval); } else { |