diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-04-20 06:33:11 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-04-20 06:33:11 +0000 |
commit | fbfde146ca8e9e2c830bbd659027a6ca69aa8c33 (patch) | |
tree | c330cdd430849f6ed133ec1856f60f5d076a916f /libc/sysdeps/linux/powerpc/bits | |
parent | 44ea58d5387b030e80ca1a5c1ea8bbd8bfc0cd54 (diff) |
Cope with gcc 3.4's more aggressive persuit of attribute unused
Diffstat (limited to 'libc/sysdeps/linux/powerpc/bits')
-rw-r--r-- | libc/sysdeps/linux/powerpc/bits/atomicity.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libc/sysdeps/linux/powerpc/bits/atomicity.h b/libc/sysdeps/linux/powerpc/bits/atomicity.h index a3f672e5e..6969749e8 100644 --- a/libc/sysdeps/linux/powerpc/bits/atomicity.h +++ b/libc/sysdeps/linux/powerpc/bits/atomicity.h @@ -29,7 +29,7 @@ #endif static __ATOMICITY_INLINE int -__attribute__ ((unused)) +__attribute_used__ exchange_and_add (volatile uint32_t *mem, int val) { int tmp, result; @@ -43,7 +43,7 @@ exchange_and_add (volatile uint32_t *mem, int val) } static __ATOMICITY_INLINE void -__attribute__ ((unused)) +__attribute_used__ atomic_add (volatile uint32_t *mem, int val) { int tmp; @@ -56,7 +56,7 @@ atomic_add (volatile uint32_t *mem, int val) } static __ATOMICITY_INLINE int -__attribute__ ((unused)) +__attribute_used__ compare_and_swap (volatile long int *p, long int oldval, long int newval) { int result; @@ -73,7 +73,7 @@ compare_and_swap (volatile long int *p, long int oldval, long int newval) } static __ATOMICITY_INLINE long int -__attribute__ ((unused)) +__attribute_used__ always_swap (volatile long int *p, long int newval) { long int result; @@ -86,7 +86,7 @@ always_swap (volatile long int *p, long int newval) } static __ATOMICITY_INLINE int -__attribute__ ((unused)) +__attribute_used__ test_and_set (volatile long int *p, long int newval) { int result; |