aboutsummaryrefslogtreecommitdiff
path: root/math/s_csinhf.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/s_csinhf.c')
-rw-r--r--math/s_csinhf.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/math/s_csinhf.c b/math/s_csinhf.c
index 72e4800cb7..16c2a0a961 100644
--- a/math/s_csinhf.c
+++ b/math/s_csinhf.c
@@ -89,18 +89,7 @@ __csinhf (__complex__ float x)
__imag__ retval = __ieee754_coshf (__real__ x) * sinix;
}
- 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;
- }
+ math_check_force_underflow_complex (retval);
}
else
{