]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
[multiple changes]
authorMatthias Klose <doko@debian.org>
Tue, 6 Dec 2005 09:30:49 +0000 (09:30 +0000)
committerMatthias Klose <doko@gcc.gnu.org>
Tue, 6 Dec 2005 09:30:49 +0000 (09:30 +0000)
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

boehm-gc/ChangeLog
boehm-gc/include/private/gc_locks.h

index 663cce3c754d308ed11f67e52fe72c4dee3fca53..f21be783c52b26f6ace12c29b2bec6e40414ca84 100644 (file)
@@ -1,3 +1,9 @@
+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.
index 775176b31519aea4d46e6636cbbfba2d16f4d684..790b542849130d70825373fc2f5972f8dc0b0dc9 100644 (file)
           /* 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;
         }