aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/ieee754/ldbl-96/w_expl.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/ieee754/ldbl-96/w_expl.c')
-rw-r--r--sysdeps/ieee754/ldbl-96/w_expl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/ieee754/ldbl-96/w_expl.c b/sysdeps/ieee754/ldbl-96/w_expl.c
index 0965e62..3cc165b 100644
--- a/sysdeps/ieee754/ldbl-96/w_expl.c
+++ b/sysdeps/ieee754/ldbl-96/w_expl.c
@@ -24,9 +24,9 @@ long double
__expl (long double x)
{
long double z = __ieee754_expl (x);
- if (__builtin_expect (!__finitel (z) || z == 0, 0)
- && __finitel (x) && _LIB_VERSION != _IEEE_)
- return __kernel_standard_l (x, x, 206 + !!__signbitl (x));
+ if (__builtin_expect (!isfinite (z) || z == 0, 0)
+ && isfinite (x) && _LIB_VERSION != _IEEE_)
+ return __kernel_standard_l (x, x, 206 + !!signbit (x));
return z;
}