]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - math/s_ctanh.c
Use glibc_likely instead __builtin_expect.
[thirdparty/glibc.git] / math / s_ctanh.c
index 0ca35e09902f2602dbf612702dfaaaad8154f1c2..be3e47e45f03ac24251847f9f501fb8e7d1c859e 100644 (file)
@@ -28,7 +28,7 @@ __ctanh (__complex__ double x)
 {
   __complex__ double res;
 
-  if (__builtin_expect (!isfinite (__real__ x) || !isfinite (__imag__ x), 0))
+  if (__glibc_unlikely (!isfinite (__real__ x) || !isfinite (__imag__ x)))
     {
       if (__isinf_ns (__real__ x))
        {
@@ -58,7 +58,7 @@ __ctanh (__complex__ double x)
       /* tanh(x+iy) = (sinh(2x) + i*sin(2y))/(cosh(2x) + cos(2y))
         = (sinh(x)*cosh(x) + i*sin(y)*cos(y))/(sinh(x)^2 + cos(y)^2).  */
 
-      if (__builtin_expect (icls != FP_SUBNORMAL, 1))
+      if (__glibc_likely (icls != FP_SUBNORMAL))
        {
          __sincos (__imag__ x, &sinix, &cosix);
        }