musl-tcc/arch/microblaze/pthread_arch.h
2022-03-20 16:48:53 +08:00

9 lines
131 B
C

static inline uintptr_t __get_tp()
{
uintptr_t tp;
__asm__ ("ori %0, r21, 0" : "=r" (tp) );
return tp;
}
#define MC_PC regs.pc