From: Ulrich Drepper Date: Mon, 20 May 2002 20:10:33 +0000 (+0000) Subject: (THREAD_SELF): Remove clobber. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ca7a59c2870bc7f5aa1bce5e90f24fead1309f6a;p=thirdparty%2Fglibc.git (THREAD_SELF): Remove clobber. --- diff --git a/linuxthreads/sysdeps/alpha/pt-machine.h b/linuxthreads/sysdeps/alpha/pt-machine.h index fc2b83fbf6f..a611f70da51 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; \ })