about summary refs log tree commit diff
path: root/math/w_remainderf.c
diff options
context:
space:
mode:
Diffstat (limited to 'math/w_remainderf.c')
-rw-r--r--math/w_remainderf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/math/w_remainderf.c b/math/w_remainderf.c
index 9bd2e48db1..b207d84824 100644
--- a/math/w_remainderf.c
+++ b/math/w_remainderf.c
@@ -24,8 +24,8 @@
 float
 __remainderf (float x, float y)
 {
-  if (((__builtin_expect (y == 0.0f, 0) && ! __isnanf (x))
-       || (__builtin_expect (__isinf_nsf (x), 0) && ! __isnanf (y)))
+  if (((__builtin_expect (y == 0.0f, 0) && ! isnan (x))
+       || (__builtin_expect (__isinf_nsf (x), 0) && ! isnan (y)))
       && _LIB_VERSION != _IEEE_)
     return __kernel_standard_f (x, y, 128); /* remainder domain */