* src/atomic_ops/sysdeps/gcc/m68k.h: Remove SMP-unsafe
AO_or_full, and let it be autogenerated instead.
+2008-07-10 Hans Boehm <Hans.Boehm@hp.com>
+ * src/atomic_ops/sysdeps/gcc/m68k.h: Remove SMP-unsafe
+ AO_or_full, and let it be autogenerated instead.
+
2008-07-03 Hans Boehm <Hans.Boehm@hp.com> (Really Thiemo Seufer)
* src/atomic_ops/sysdeps/gcc/mips.h: Really add mips support,
fixing a merge accident.
#define AO_HAVE_compare_and_swap_full
-/* This is not really SMP safe... */
-AO_INLINE void
-AO_or_full (volatile AO_t *p, AO_t incr)
-{
- __asm__ __volatile__ (
- "or.l %1,%0"
- : "=m" (*p)
- : "d" (incr), "m" (*p)
- : "memory");
-}
-
-#define AO_HAVE_or_full
#include "../ao_t_is_int.h"