diff options
Diffstat (limited to 'math/w_powf.c')
-rw-r--r-- | math/w_powf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/w_powf.c b/math/w_powf.c index 1ba22c0560..fa9e0071c8 100644 --- a/math/w_powf.c +++ b/math/w_powf.c @@ -25,7 +25,7 @@ float __powf (float x, float y) { float z = __ieee754_powf (x, y); - if (__builtin_expect (!__finitef (z), 0)) + if (__glibc_unlikely (!__finitef (z))) { if (_LIB_VERSION != _IEEE_) { |