From cbf377edd318a6f35e5b54573f902299c6da9ed5 Mon Sep 17 00:00:00 2001 From: Wilco Dijkstra Date: Wed, 3 Jun 2015 16:35:44 +0100 Subject: Replace finite with isfinite. --- sysdeps/ieee754/ldbl-96/s_fma.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sysdeps/ieee754/ldbl-96') diff --git a/sysdeps/ieee754/ldbl-96/s_fma.c b/sysdeps/ieee754/ldbl-96/s_fma.c index 19736ef957..8fd238cfe4 100644 --- a/sysdeps/ieee754/ldbl-96/s_fma.c +++ b/sysdeps/ieee754/ldbl-96/s_fma.c @@ -34,7 +34,7 @@ __fma (double x, double y, double z) { /* If z is Inf, but x and y are finite, the result should be z rather than NaN. */ - if (finite (x) && finite (y)) + if (isfinite (x) && isfinite (y)) return (z + x) + y; return (x * y) + z; } -- cgit 1.4.1