* include/private/gc_locks.h: Fix compilation of GC_test_and_set on IA64 with gcc-3.3.5.
svn path=/trunk/mono/; revision=48600
+2005-08-20 Zoltan Varga <vargaz@freemail.hu>
+
+ * include/private/gc_locks.h: Fix compilation of GC_test_and_set on IA64 with gcc-3.3.5.
Thu Aug 18 18:08:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
# ifndef __INTEL_COMPILER
__asm__ __volatile__("xchg4 %0=%1,%2"
: "=r"(oldval), "=m"(*addr)
- : "r"(n), "1"(*addr) : "memory");
+ : "r"(n) : "memory");
# else
oldval = _InterlockedExchange(addr, n);
# endif