summaryrefslogtreecommitdiff
path: root/math/s_ctanf.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/s_ctanf.c')
-rw-r--r--math/s_ctanf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/math/s_ctanf.c b/math/s_ctanf.c
index a2343dd54e..e6f345a231 100644
--- a/math/s_ctanf.c
+++ b/math/s_ctanf.c
@@ -28,7 +28,7 @@ __ctanf (__complex__ float x)
{
__complex__ float res;
- if (__builtin_expect (!isfinite (__real__ x) || !isfinite (__imag__ x), 0))
+ if (__glibc_unlikely (!isfinite (__real__ x) || !isfinite (__imag__ x)))
{
if (__isinf_nsf (__imag__ x))
{
@@ -57,7 +57,7 @@ __ctanf (__complex__ float x)
/* tan(x+iy) = (sin(2x) + i*sinh(2y))/(cos(2x) + cosh(2y))
= (sin(x)*cos(x) + i*sinh(y)*cosh(y)/(cos(x)^2 + sinh(y)^2). */
- if (__builtin_expect (fpclassify(__real__ x) != FP_SUBNORMAL, 1))
+ if (__glibc_likely (fpclassify(__real__ x) != FP_SUBNORMAL))
{
__sincosf (__real__ x, &sinrx, &cosrx);
}