projects
/
oweals
/
musl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bf453d6
)
remove ancient clang workaround from powerpc pthread_arch.h asm
author
Rich Felker
<dalias@aerifal.cx>
Tue, 16 Oct 2018 17:55:55 +0000
(13:55 -0400)
committer
Rich Felker
<dalias@aerifal.cx>
Tue, 16 Oct 2018 18:11:46 +0000
(14:11 -0400)
versions of clang all the way back to 3.1 lack the bug this was
purportedly working around.
arch/powerpc/pthread_arch.h
patch
|
blob
|
history
diff --git
a/arch/powerpc/pthread_arch.h
b/arch/powerpc/pthread_arch.h
index 79e5a09f925b75cc797cf8619077d310f7bd0c65..bab2e6ca459cc8530fa2da595a76a16f7deaafef 100644
(file)
--- a/
arch/powerpc/pthread_arch.h
+++ b/
arch/powerpc/pthread_arch.h
@@
-1,12
+1,7
@@
static inline struct pthread *__pthread_self()
{
-#ifdef __clang__
- char *tp;
- __asm__ __volatile__ ("mr %0, 2" : "=r"(tp) : : );
-#else
register char *tp __asm__("r2");
__asm__ __volatile__ ("" : "=r" (tp) );
-#endif
return (pthread_t)(tp - 0x7000 - sizeof(struct pthread));
}