2005-12-06 Matthias Klose <doko@debian.org>
2005-09-15 Kazu Hirata <kazu@codesourcery.com>
* include/private/gc_locks.h (GC_test_and_set): Change the
constraint of the first operand to '0'.
From-SVN: r108109
+2005-12-06 Matthias Klose <doko@debian.org>
+
+ 2005-09-15 Kazu Hirata <kazu@codesourcery.com>
+ * include/private/gc_locks.h (GC_test_and_set): Change the
+ constraint of the first operand to '0'.
+
2005-11-30 Release Manager
* GCC 3.4.5 released.
/* See linuxthreads/sysdeps/arm/pt-machine.h in glibc-2.1 */
__asm__ __volatile__("swp %0, %1, [%2]"
: "=r"(oldval)
- : "r"(1), "r"(addr)
+ : "0"(1), "r"(addr)
: "memory");
return oldval;
}