]> sourceware.org Git - glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Wed, 26 Nov 2003 05:38:12 +0000 (05:38 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 26 Nov 2003 05:38:12 +0000 (05:38 +0000)
2003-11-25  H.J. Lu  <hongjiu.lu@intel.com>

* sysdeps/i386/fpu/bits/mathinline.h (sqrt): Don't inline
sqrt for gcc 3.3 and above.

ChangeLog
sysdeps/i386/fpu/bits/mathinline.h

index f70b66ccc8ef170425ba24140ac5800b42259b06..85e8571db945ea166f576dda170c296e70a06095 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2003-11-25  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * sysdeps/i386/fpu/bits/mathinline.h (sqrt): Don't inline
+       sqrt for gcc 3.3 and above.
+
 2003-11-25  Ulrich Drepper  <drepper@redhat.com>
 
        * posix/runptests.c (main): Make errors fatal.
index 21ae218c62c2a04fad172fa3a9231fa2f62fe4bf..9c993156625759b8da064b1aa0c019891713a0b1 100644 (file)
@@ -438,8 +438,10 @@ __inline_mathcodeNP2 (fmod, __x, __y, \
 
 
 #ifdef __FAST_MATH__
+# if !__GNUC_PREREQ (3,3)
 __inline_mathopNP (sqrt, "fsqrt")
 __inline_mathopNP_ (long double, __sqrtl, "fsqrt")
+# endif
 #endif
 
 #if __GNUC_PREREQ (2, 8)
This page took 0.05613 seconds and 5 git commands to generate.