Update.
authorUlrich Drepper <drepper@redhat.com>
Mon, 2 Oct 2000 22:05:50 +0000 (22:05 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 2 Oct 2000 22:05:50 +0000 (22:05 +0000)
2000-10-02  Ralf Baechle  <ralf@gnu.org>

* sysdeps/unix/sysv/linux/mips/sys/tas.h: Add missing .mips0 at the
end of inline assembler code.

ChangeLog
sysdeps/unix/sysv/linux/mips/sys/tas.h

index b0b42fa..253a8db 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-10-02  Ralf Baechle  <ralf@gnu.org>
+
+       * sysdeps/unix/sysv/linux/mips/sys/tas.h: Add missing .mips0 at the
+       end of inline assembler code.
+
 2000-10-02  Ulrich Drepper  <drepper@redhat.com>
 
        * include/features.h [__USE_FILE_OFFSET && !__REDIRECT]: Define
index bc7f52a..8409535 100644 (file)
@@ -52,7 +52,8 @@ _test_and_set (int *p, int v) __THROW
      ".set     pop\n\t"
      "sc       %1,%2\n\t"
      "beqz     %1,1b\n"
-     "2:"
+     "2:\n\t"
+     ".set\tmips0"
      : "=&r" (r), "=&r" (t), "=m" (*p)
      : "m" (*p), "r" (v)
      : "memory");