Fixed getThreadLocalStorage.

This commit is contained in:
yellows8 2017-09-08 17:56:32 -04:00
parent 45d7a25a20
commit 3b48bab62a

View File

@ -19,7 +19,7 @@
static inline void* getThreadLocalStorage(void)
{
void* ret;
__asm__ ("mrs %[data], tpidrro_el0 : [data] "=x" (ret));
__asm__ ("mrs %[data], tpidrro_el0" : [data] "=x" (ret));
return ret;
}