aboutsummaryrefslogtreecommitdiff
path: root/math/k_casinhf.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/k_casinhf.c')
-rw-r--r--math/k_casinhf.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/math/k_casinhf.c b/math/k_casinhf.c
index 04c1a21f25..088b61fe0a 100644
--- a/math/k_casinhf.c
+++ b/math/k_casinhf.c
@@ -182,11 +182,7 @@ __kernel_casinhf (__complex__ float x, int adj)
else
__imag__ res = __ieee754_atan2f (ix, s);
}
- if (__real__ res < FLT_MIN)
- {
- volatile float force_underflow = __real__ res * __real__ res;
- (void) force_underflow;
- }
+ math_check_force_underflow_nonneg (__real__ res);
}
else
{