mirror of git://sourceware.org/git/glibc.git
bits/nan.h: Change __attribute_used__ to __attribute__ ((unused)).
This commit is contained in:
parent
72f0ffdcbe
commit
c7b275d6b3
|
@ -1,3 +1,8 @@
|
|||
2013-02-20 Thomas Schwinge <thomas@codesourcery.com>
|
||||
|
||||
* sysdeps/ieee754/bits/nan.h [!__GNUC__] (__nan_union): Change
|
||||
__attribute_used__ to __attribute__ ((unused)).
|
||||
|
||||
2013-02-20 Siddhesh Poyarekar <siddhesh@redhat.com>
|
||||
|
||||
* sysdeps/ieee754/dbl-64/mpa.c (__sqr): Copy over comment from
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
2013-02-20 Thomas Schwinge <thomas@codesourcery.com>
|
||||
|
||||
* 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__.
|
||||
|
||||
|
|
|
@ -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. */
|
||||
|
|
|
@ -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. */
|
||||
|
|
Loading…
Reference in New Issue