duplicate generic bits/msg.h for each arch using it, in prep to change
[musl] / arch / sh / pthread_arch.h
index a7dd27a..3ee9c1a 100644 (file)
@@ -1,7 +1,7 @@
 static inline struct pthread *__pthread_self()
 {
        char *self;
-       __asm__ __volatile__ ("stc gbr,%0" : "=r" (self) );
+       __asm__ ("stc gbr,%0" : "=r" (self) );
        return (struct pthread *) (self - sizeof(struct pthread));
 }