diff options
Diffstat (limited to 'math/w_remainderf.c')
-rw-r--r-- | math/w_remainderf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/w_remainderf.c b/math/w_remainderf.c index b207d84824..c003002287 100644 --- a/math/w_remainderf.c +++ b/math/w_remainderf.c @@ -25,7 +25,7 @@ float __remainderf (float x, float y) { if (((__builtin_expect (y == 0.0f, 0) && ! isnan (x)) - || (__builtin_expect (__isinf_nsf (x), 0) && ! isnan (y))) + || (__builtin_expect (isinf (x), 0) && ! isnan (y))) && _LIB_VERSION != _IEEE_) return __kernel_standard_f (x, y, 128); /* remainder domain */ |