]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - math/w_coshf.c
This patch renames all uses of __isinf*, __isnan*, __finite* and __signbit* to use...
[thirdparty/glibc.git] / math / w_coshf.c
index df1f681205e0896325ffbd11937db29b242a76e2..dc7fb53ba30d0ed21db07fbe35ebfb770d997232 100644 (file)
@@ -25,7 +25,7 @@ float
 __coshf (float x)
 {
        float z = __ieee754_coshf (x);
-       if (__builtin_expect (!__finitef (z), 0) && __finitef (x)
+       if (__builtin_expect (!isfinite (z), 0) && isfinite (x)
            && _LIB_VERSION != _IEEE_)
                return __kernel_standard_f (x, x, 105); /* cosh overflow */