From 090d93cde2de0986a26e2f221807c09c7bd5d3c3 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sun, 13 Jun 1999 15:10:39 +0000 Subject: Disable signbit* inline functions for gcc <= 2.7.x. --- sysdeps/i386/fpu/bits/mathinline.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'sysdeps/i386/fpu/bits') diff --git a/sysdeps/i386/fpu/bits/mathinline.h b/sysdeps/i386/fpu/bits/mathinline.h index ac840bffed..8fb22d48d2 100644 --- a/sysdeps/i386/fpu/bits/mathinline.h +++ b/sysdeps/i386/fpu/bits/mathinline.h @@ -110,6 +110,9 @@ __result; }) # endif /* __i686__ */ +/* The gcc, version 2.7 or below, has problems with all this inlining + code. So disable it for this version of the compiler. */ +# if (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ > 7)) /* Test for negative number. Used in the signbit() macro. */ __MATH_INLINE int __signbitf (float __x) @@ -129,6 +132,7 @@ __signbitl (long double __x) __extension__ union { long double __l; int __i[3]; } __u = { __l: __x }; return (__u.__i[2] & 0x8000) != 0; } +# endif #endif -- cgit v1.2.3