From: Matthias Klose Date: Tue, 6 Dec 2005 09:30:49 +0000 (+0000) Subject: [multiple changes] X-Git-Tag: releases/gcc-3.4.6~267 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1bbfcea34a17927fd28d740cb188bd88ecfc01eb;p=thirdparty%2Fgcc.git [multiple changes] 2005-12-06 Matthias Klose 2005-09-15 Kazu Hirata * include/private/gc_locks.h (GC_test_and_set): Change the constraint of the first operand to '0'. From-SVN: r108109 --- diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog index 663cce3c754d..f21be783c52b 100644 --- a/boehm-gc/ChangeLog +++ b/boehm-gc/ChangeLog @@ -1,3 +1,9 @@ +2005-12-06 Matthias Klose + + 2005-09-15 Kazu Hirata + * 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. diff --git a/boehm-gc/include/private/gc_locks.h b/boehm-gc/include/private/gc_locks.h index 775176b31519..790b54284913 100644 --- a/boehm-gc/include/private/gc_locks.h +++ b/boehm-gc/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; }