diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-11-26 05:38:12 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-11-26 05:38:12 +0000 |
commit | 6d316b07f1ea998c04887d6a4ea885b8527eafde (patch) | |
tree | 261937d44026008d8b1bdbbd04d5c52bdae0a50e /sysdeps/i386/fpu/bits | |
parent | 97fd3a3003b9eb980395417ffb104e02bf315fe8 (diff) | |
download | glibc-6d316b07f1ea998c04887d6a4ea885b8527eafde.tar.gz |
Update.
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.
Diffstat (limited to 'sysdeps/i386/fpu/bits')
-rw-r--r-- | sysdeps/i386/fpu/bits/mathinline.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sysdeps/i386/fpu/bits/mathinline.h b/sysdeps/i386/fpu/bits/mathinline.h index 21ae218c62..9c99315662 100644 --- a/sysdeps/i386/fpu/bits/mathinline.h +++ b/sysdeps/i386/fpu/bits/mathinline.h @@ -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) |