about summary refs log tree commit diff
path: root/math/s_ctanhf.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/s_ctanhf.c')
-rw-r--r--math/s_ctanhf.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/math/s_ctanhf.c b/math/s_ctanhf.c
index cb65edb7fc..6cb3a2cc99 100644
--- a/math/s_ctanhf.c
+++ b/math/s_ctanhf.c
@@ -21,7 +21,6 @@
 #include <complex.h>
 #include <fenv.h>
 #include <math.h>
-
 #include <math_private.h>
 
 
@@ -30,7 +29,7 @@ __ctanhf (__complex__ float x)
 {
   __complex__ float res;
 
-  if (!isfinite (__real__ x) || !isfinite (__imag__ x))
+  if (__builtin_expect (!isfinite (__real__ x) || !isfinite (__imag__ x), 0))
     {
       if (__isinf_nsf (__real__ x))
 	{
@@ -46,10 +45,8 @@ __ctanhf (__complex__ float x)
 	  __real__ res = __nanf ("");
 	  __imag__ res = __nanf ("");
 
-#ifdef FE_INVALID
 	  if (__isinf_nsf (__imag__ x))
 	    feraiseexcept (FE_INVALID);
-#endif
 	}
     }
   else