]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
(sqrt, __sqrtl, ldexp, ldexpf, ldexpl): Only define if __FAST_MATH__.
authorUlrich Drepper <drepper@redhat.com>
Mon, 2 Jun 2003 22:39:19 +0000 (22:39 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 2 Jun 2003 22:39:19 +0000 (22:39 +0000)
sysdeps/i386/fpu/bits/mathinline.h

index e8091df6845d9fe6196ba4815db162a25c5701ee..627482406360e77d86b05aa550565f3bd02e3262 100644 (file)
@@ -1,5 +1,5 @@
 /* Inline math functions for i387.
-   Copyright (C) 1995,96,97,98,99,2000,2001 Free Software Foundation, Inc.
+   Copyright (C) 1995,96,97,98,99,2000,2001,2003 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by John C. Bowman <bowman@math.ualberta.ca>, 1995.
 
@@ -437,8 +437,10 @@ __inline_mathcodeNP2 (fmod, __x, __y, \
   return __value)
 
 
+#ifdef __FAST_MATH__
 __inline_mathopNP (sqrt, "fsqrt")
 __inline_mathopNP_ (long double, __sqrtl, "fsqrt")
+#endif
 
 #if __GNUC_PREREQ (2, 8)
 __inline_mathcodeNP_ (double, fabs, __x, return __builtin_fabs (__x))
@@ -511,7 +513,8 @@ __inline_mathcodeNP (ceil, __x, \
   __asm __volatile ("fldcw %0" : : "m" (__cw));                                      \
   return __value)
 
-#define __ldexp_code \
+#ifdef __FAST_MATH__
+# define __ldexp_code \
   register long double __value;                                                      \
   __asm __volatile__                                                         \
     ("fscale"                                                                \
@@ -523,6 +526,7 @@ ldexp (double __x, int __y) __THROW
 {
   __ldexp_code;
 }
+#endif
 
 
 /* Optimized versions for some non-standardized functions.  */