about summary refs log tree commit diff
path: root/math/s_csinhl.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/s_csinhl.c')
-rw-r--r--math/s_csinhl.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/math/s_csinhl.c b/math/s_csinhl.c
index 62243dab62..e7e3dcd1dd 100644
--- a/math/s_csinhl.c
+++ b/math/s_csinhl.c
@@ -89,18 +89,7 @@ __csinhl (__complex__ long double x)
 	      __imag__ retval = __ieee754_coshl (__real__ x) * sinix;
 	    }
 
-	  if (fabsl (__real__ retval) < LDBL_MIN)
-	    {
-	      volatile long double force_underflow
-		= __real__ retval * __real__ retval;
-	      (void) force_underflow;
-	    }
-	  if (fabsl (__imag__ retval) < LDBL_MIN)
-	    {
-	      volatile long double force_underflow
-		= __imag__ retval * __imag__ retval;
-	      (void) force_underflow;
-	    }
+	  math_check_force_underflow_complex (retval);
 	}
       else
 	{