From e9f145cba8691a81dac379914bb3895360795a9b Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Tue, 25 Aug 2009 15:48:06 -0700 Subject: Fix generic fdiml. --- math/s_fdiml.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'math/s_fdiml.c') diff --git a/math/s_fdiml.c b/math/s_fdiml.c index e1ff11b307..f3072b99a0 100644 --- a/math/s_fdiml.c +++ b/math/s_fdiml.c @@ -24,8 +24,8 @@ long double __fdiml (long double x, long double y) { - int clsx = fpclassifyl (x); - int clsy = fpclassifyl (y); + int clsx = fpclassify (x); + int clsy = fpclassify (y); if (clsx == FP_NAN || clsy == FP_NAN || (y < 0 && clsx == FP_INFINITE && clsy == FP_INFINITE)) -- cgit v1.2.3