C compiler with embedded metalanguage.
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.
 
 
 

18 lines
331 B

static inline void
ttt (int *wwp)
{
int xyz = 6;
do {
asm(".set noreorder; \
lqq %7,5(%8); \
nop; \
ziv %2,%2,-4; \
1:\
ab %5,7(%1);\
.set reorder"
: "=r" (xyz)
: "r" (wwp), "0" (xyz));
} while (!xyz);
}