deduplicate __NR_* and SYS_* syscall number definitions
[oweals/musl.git] / arch / mips / pthread_arch.h
index 8a49965496928b8d1df438f2d184c93678253300..e5812655df8684f7e44204bf0561c9c0dade0ceb 100644 (file)
@@ -1,12 +1,11 @@
 static inline struct pthread *__pthread_self()
 {
-#ifdef __clang__
-       char *tp;
-       __asm__ __volatile__ (".word 0x7c03e83b ; move %0, $3" : "=r" (tp) : : "$3" );
-#else
+#if __mips_isa_rev < 2
        register char *tp __asm__("$3");
-       /* rdhwr $3,$29 */
        __asm__ __volatile__ (".word 0x7c03e83b" : "=r" (tp) );
+#else
+       char *tp;
+       __asm__ __volatile__ ("rdhwr %0, $29" : "=r" (tp) );
 #endif
        return (pthread_t)(tp - 0x7000 - sizeof(struct pthread));
 }