(THREAD_SELF): Remove clobber.

This commit is contained in:
Ulrich Drepper 2002-05-20 20:10:33 +00:00
parent a156ce100f
commit ca7a59c287

View File

@ -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; \
})