From fbfde146ca8e9e2c830bbd659027a6ca69aa8c33 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Tue, 20 Apr 2004 06:33:11 +0000 Subject: Cope with gcc 3.4's more aggressive persuit of attribute unused --- libc/sysdeps/linux/powerpc/bits/atomicity.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libc/sysdeps/linux/powerpc') 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; -- cgit v1.2.3