From ca7a59c2870bc7f5aa1bce5e90f24fead1309f6a Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 20 May 2002 20:10:33 +0000 Subject: [PATCH] (THREAD_SELF): Remove clobber. --- linuxthreads/sysdeps/alpha/pt-machine.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linuxthreads/sysdeps/alpha/pt-machine.h b/linuxthreads/sysdeps/alpha/pt-machine.h index fc2b83fbf6..a611f70da5 100644 --- a/linuxthreads/sysdeps/alpha/pt-machine.h +++ b/linuxthreads/sysdeps/alpha/pt-machine.h @@ -71,7 +71,7 @@ testandset (int *spinlock) #define THREAD_SELF \ ({ \ register pthread_descr __self __asm__("$0"); \ - __asm__ ("call_pal %1" : "=r"(__self) : "i"(PAL_rduniq) : "$0"); \ + __asm__ ("call_pal %1" : "=r"(__self) : "i"(PAL_rduniq)); \ __self; \ })