You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
178 B

static inline uintptr_t __get_tp()
10 years ago
{
uintptr_t tp;
__asm__ (
10 years ago
"ear %0, %%a0\n"
"sllg %0, %0, 32\n"
"ear %0, %%a1\n"
: "=r"(tp));
return tp;
10 years ago
}
#define MC_PC psw.addr