diff options
Diffstat (limited to 'math/w_lgammaf_r.c')
-rw-r--r-- | math/w_lgammaf_r.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/w_lgammaf_r.c b/math/w_lgammaf_r.c index 683fe72dc6..d7d2cb8bc1 100644 --- a/math/w_lgammaf_r.c +++ b/math/w_lgammaf_r.c @@ -25,8 +25,8 @@ float __lgammaf_r(float x, int *signgamp) { float y = __ieee754_lgammaf_r(x,signgamp); - if(__builtin_expect(!__finitef(y), 0) - && __finitef(x) && _LIB_VERSION != _IEEE_) + if(__builtin_expect(!isfinite(y), 0) + && isfinite(x) && _LIB_VERSION != _IEEE_) return __kernel_standard_f(x, x, __floorf(x)==x&&x<=0.0f ? 115 /* lgamma pole */ |