diff options
Diffstat (limited to 'sysdeps/ieee754/ldbl-96/s_fma.c')
-rw-r--r-- | sysdeps/ieee754/ldbl-96/s_fma.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |