wasi-libc/libc-top-half/musl/arch/microblaze/pthread_arch.h
Dan Gohman 322bd4ff9e Update to musl 1.2.2.
See the WHATSNEW file for details.
2021-03-18 11:18:41 -07: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