mirror of
git://git.musl-libc.org/musl
synced 2025-01-09 00:00:18 +00:00
12 lines
217 B
C
12 lines
217 B
C
|
static inline uintptr_t __get_tp()
|
||
|
{
|
||
|
register uintptr_t tp __asm__("tp");
|
||
|
__asm__ ("" : "=r" (tp) );
|
||
|
return tp;
|
||
|
}
|
||
|
|
||
|
#define TLS_ABOVE_TP
|
||
|
#define GAP_ABOVE_TP 0
|
||
|
#define DTP_OFFSET 0
|
||
|
#define MC_PC __pc
|