From d81f90ccd0109de9ed78aeeb8d86e2c6d4600690 Mon Sep 17 00:00:00 2001 From: Wilco Dijkstra Date: Wed, 3 Jun 2015 15:36:34 +0100 Subject: This patch renames all uses of __isinf*, __isnan*, __finite* and __signbit* to use standard C99 macros. This has no effect on generated code. --- sysdeps/ieee754/ldbl-opt/nldbl-isnan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sysdeps/ieee754/ldbl-opt/nldbl-isnan.c') diff --git a/sysdeps/ieee754/ldbl-opt/nldbl-isnan.c b/sysdeps/ieee754/ldbl-opt/nldbl-isnan.c index e5f0f1b394..2d87bf85fb 100644 --- a/sysdeps/ieee754/ldbl-opt/nldbl-isnan.c +++ b/sysdeps/ieee754/ldbl-opt/nldbl-isnan.c @@ -4,7 +4,7 @@ int attribute_hidden __isnanl (double x) { - return __isnan (x); + return isnan (x); } extern __typeof (__isnanl) isnanl attribute_hidden; weak_alias (__isnanl, isnanl) -- cgit 1.4.1