2003-03-27 Roland McGrath <roland@redhat.com>

* sysdeps/powerpc/bits/atomic.h [! __powerpc64__]
	(__arch_atomic_decrement_if_positive_64): Fix bogus definition.
This commit is contained in:
Roland McGrath 2003-03-28 07:17:02 +00:00
parent 3e60b5f234
commit 448163bae2
1 changed files with 12 additions and 12 deletions

View File

@ -175,7 +175,7 @@ typedef uintmax_t uatomic_max_t;
# define __arch_atomic_exchange_and_add_64(mem, value) \
({ abort (); (*mem) = (value); })
# define __arch_atomic_decrement_if_positive_64(mem) \
({ abort (); (*mem) = (value); })
({ abort (); (*mem)--; })
#endif
#define __arch_atomic_exchange_32(mem, value) \