diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-05-25 06:15:25 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-05-25 06:15:25 +0000 |
commit | 0f5504179a2e37a20e409c48dcc8d640393cd16d (patch) | |
tree | 5e61a218eacec17393a6688dab8bb0e59943592b /sysdeps | |
parent | db33f7d4aef7422140d5e19c440bb5e084fbe186 (diff) | |
download | glibc-0f5504179a2e37a20e409c48dcc8d640393cd16d.tar.gz glibc-0f5504179a2e37a20e409c48dcc8d640393cd16d.tar.xz glibc-0f5504179a2e37a20e409c48dcc8d640393cd16d.zip |
Update.
2000-05-23 Jakub Jelinek <jakub@redhat.com> * sysdeps/i386/fpu/bits/mathinline.h (__sincos, __sincosf, __sincosl): Guard with __USE_GNU.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/i386/fpu/bits/mathinline.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sysdeps/i386/fpu/bits/mathinline.h b/sysdeps/i386/fpu/bits/mathinline.h index 33fd5a9c59..a1d9532083 100644 --- a/sysdeps/i386/fpu/bits/mathinline.h +++ b/sysdeps/i386/fpu/bits/mathinline.h @@ -305,7 +305,8 @@ __inline_mathcode (__pow2, __x, \ : "=t" (__value) : "0" (__value), "u" (__exponent)); \ return __value) -#define __sincos_code \ +#ifdef __USE_GNU +# define __sincos_code \ register long double __cosr; \ register long double __sinr; \ __asm __volatile__ \ @@ -344,6 +345,7 @@ __sincosl (long double __x, long double *__sinx, long double *__cosx) { __sincos_code; } +#endif /* Optimized inline implementation, sometimes with reduced precision |