diff options
Diffstat (limited to 'math/s_catanhl.c')
-rw-r--r-- | math/s_catanhl.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/math/s_catanhl.c b/math/s_catanhl.c index a0b760082e..c97a39b280 100644 --- a/math/s_catanhl.c +++ b/math/s_catanhl.c @@ -133,16 +133,7 @@ __catanhl (__complex__ long double x) __imag__ res = 0.5L * __ieee754_atan2l (2.0L * __imag__ x, den); } - if (fabsl (__real__ res) < LDBL_MIN) - { - volatile long double force_underflow = __real__ res * __real__ res; - (void) force_underflow; - } - if (fabsl (__imag__ res) < LDBL_MIN) - { - volatile long double force_underflow = __imag__ res * __imag__ res; - (void) force_underflow; - } + math_check_force_underflow_complex (res); } return res; |