From: Brendan Kehoe Date: Fri, 10 Mar 1995 02:10:40 +0000 (+0000) Subject: * sysdeps/alpha/__math.h (__copysign): Use attribute instead of old ... X-Git-Tag: upstream/2.30~30128 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=127b3c3596da5da5b40cbfb4554cb101a2299635;p=external%2Fglibc.git * 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. --- diff --git a/ChangeLog b/ChangeLog index f56d429..5db7a44 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ Thu Mar 9 17:16:53 1995 Brendan Kehoe (brendan@zen.org) + * sysdeps/alpha/__math.h (__copysign): Use attribute instead of old + __CONSTVALUE by adding forward decl first with the const attribute. + * configure.in: Match `osf*', not `osf1*'. * configure: Likewise. * sysdeps/unix/bsd/osf: Renamed from `sysdeps/unix/bsd/osf1'. diff --git a/sysdeps/alpha/__math.h b/sysdeps/alpha/__math.h index b06f716..06e43db 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));