diff options
author | Brendan Kehoe <brendan@zen.org> | 1995-03-10 02:10:40 +0000 |
---|---|---|
committer | Brendan Kehoe <brendan@zen.org> | 1995-03-10 02:10:40 +0000 |
commit | 127b3c3596da5da5b40cbfb4554cb101a2299635 (patch) | |
tree | a9603999ed3aaf6747ef21c526b4b5069747cb09 /sysdeps/alpha/__math.h | |
parent | 134c12361952e77e99fe59021aa3c30224345ac5 (diff) | |
download | glibc-127b3c3596da5da5b40cbfb4554cb101a2299635.tar.gz glibc-127b3c3596da5da5b40cbfb4554cb101a2299635.tar.xz glibc-127b3c3596da5da5b40cbfb4554cb101a2299635.zip |
* sysdeps/alpha/__math.h (__copysign): Use attribute instead of old __CONSTVALUE by adding forward decl first with the const attribute.
* sysdeps/alpha/__math.h (__copysign): Use attribute instead of old __CONSTVALUE by adding forward decl first with the const attribute.
Diffstat (limited to 'sysdeps/alpha/__math.h')
-rw-r--r-- | sysdeps/alpha/__math.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sysdeps/alpha/__math.h b/sysdeps/alpha/__math.h index b06f716c50..06e43dbf04 100644 --- a/sysdeps/alpha/__math.h +++ b/sysdeps/alpha/__math.h @@ -18,7 +18,9 @@ Cambridge, MA 02139, USA. */ #if defined (__GNUC__) && !defined (__NO_MATH_INLINES) -extern __inline __CONSTVALUE double +extern __inline double __copysign (double __x, double __y) __attribute__ ((__const__)); + +extern __inline double __copysign (double __x, double __y) { __asm ("cpys %1, %2, %0" : "=f" (__x) : "f" (__y), "f" (__x)); |