aboutsummaryrefslogtreecommitdiff
path: root/linuxthreads
diff options
context:
space:
mode:
Diffstat (limited to 'linuxthreads')
-rw-r--r--linuxthreads/ChangeLog5
-rw-r--r--linuxthreads/sysdeps/alpha/pt-machine.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog
index 9a58488838..0ab1e1c5f2 100644
--- a/linuxthreads/ChangeLog
+++ b/linuxthreads/ChangeLog
@@ -1,3 +1,8 @@
+2002-05-20 Ulrich Drepper <drepper@redhat.com>
+
+ * sysdeps/alpha/pt-machine.c (THREAD_SELF): Remove clobber.
+ Patch by Glen Nakamura <gen@flex.com>.
+
2002-05-03 Ulrich Drepper <drepper@redhat.com>
* signals.c: Move sighandler functions to...
diff --git a/linuxthreads/sysdeps/alpha/pt-machine.h b/linuxthreads/sysdeps/alpha/pt-machine.h
index 3d5ade68f7..83f8e50139 100644
--- a/linuxthreads/sysdeps/alpha/pt-machine.h
+++ b/linuxthreads/sysdeps/alpha/pt-machine.h
@@ -76,7 +76,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; \
})