musl-tcc/arch/microblaze/pthread_arch.h

9 lines
131 B
C
Raw Normal View History

2022-03-20 04:48:53 -04:00
static inline uintptr_t __get_tp()
{
uintptr_t tp;
__asm__ ("ori %0, r21, 0" : "=r" (tp) );
return tp;
}
#define MC_PC regs.pc