From dfe852005e81c513c8188f646202241128d1a482 Mon Sep 17 00:00:00 2001 From: kazu Date: Thu, 15 Sep 2005 22:35:52 +0000 Subject: [PATCH] * include/private/gc_locks.h (GC_test_and_set): Change the constraint of the first operand to '0'. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@104329 138bc75d-0d04-0410-961f-82ee72b054a4 --- ChangeLog | 5 +++++ include/private/gc_locks.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 390aa5b6..cf1e5a63 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-09-15 Kazu Hirata + + * include/private/gc_locks.h (GC_test_and_set): Change the + constraint of the first operand to '0'. + 2005-09-06 Tom Tromey PR libgcj/23662: diff --git a/include/private/gc_locks.h b/include/private/gc_locks.h index 46605caf..ec3e6cd1 100644 --- a/include/private/gc_locks.h +++ b/include/private/gc_locks.h @@ -209,7 +209,7 @@ /* 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; } -- 2.40.0