sys/ptrace.h: add PTRACE_GET_SYSCALL_INFO from linux v5.3
[musl] / arch / microblaze / pthread_arch.h
index 08d1ba7..f6ba8de 100644 (file)
@@ -1,7 +1,7 @@
 static inline struct pthread *__pthread_self()
 {
        struct pthread *self;
-       __asm__ __volatile__ ("ori %0, r21, 0" : "=r" (self) );
+       __asm__ ("ori %0, r21, 0" : "=r" (self) );
        return self;
 }