From: Thomas Schwinge Date: Tue, 19 Feb 2013 12:06:39 +0000 (+0100) Subject: bits/nan.h: Change __attribute_used__ to __attribute__ ((unused)). X-Git-Tag: upstream/2.30~9488 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c7b275d6b3bceb6b400fa3044d13d1001bc605ca;p=external%2Fglibc.git bits/nan.h: Change __attribute_used__ to __attribute__ ((unused)). --- diff --git a/ChangeLog b/ChangeLog index 2096d50..853c64e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2013-02-20 Thomas Schwinge + + * sysdeps/ieee754/bits/nan.h [!__GNUC__] (__nan_union): Change + __attribute_used__ to __attribute__ ((unused)). + 2013-02-20 Siddhesh Poyarekar * sysdeps/ieee754/dbl-64/mpa.c (__sqr): Copy over comment from diff --git a/ports/ChangeLog.mips b/ports/ChangeLog.mips index 936ab17..8954f9a 100644 --- a/ports/ChangeLog.mips +++ b/ports/ChangeLog.mips @@ -1,5 +1,8 @@ 2013-02-20 Thomas Schwinge + * sysdeps/mips/bits/nan.h [!__GNUC__] (__nan_union): Change + __attribute_used__ to __attribute__ ((unused)). + * sysdeps/mips/bits/nan.h [!__GNUC__] (__nan_union): Add __attribute_used__. diff --git a/ports/sysdeps/mips/bits/nan.h b/ports/sysdeps/mips/bits/nan.h index 71f372d..8f4666d 100644 --- a/ports/sysdeps/mips/bits/nan.h +++ b/ports/sysdeps/mips/bits/nan.h @@ -50,7 +50,7 @@ # endif static union { unsigned char __c[4]; float __d; } __nan_union - __attribute_used__ = { __nan_bytes }; + __attribute__ ((unused)) = { __nan_bytes }; # define NAN (__nan_union.__d) #endif /* GCC. */ diff --git a/sysdeps/ieee754/bits/nan.h b/sysdeps/ieee754/bits/nan.h index d3ab38b..a1e6a51 100644 --- a/sysdeps/ieee754/bits/nan.h +++ b/sysdeps/ieee754/bits/nan.h @@ -46,7 +46,7 @@ # endif static union { unsigned char __c[4]; float __d; } __nan_union - __attribute_used__ = { __nan_bytes }; + __attribute__ ((unused)) = { __nan_bytes }; # define NAN (__nan_union.__d) #endif /* GCC. */