brintos

brintos / llvm-project-archived public Read only

0
0
Text · 146 B · 877213c Raw
14 lines · c
1int foo(void) {2  int x;3 4  asm goto(""5           : "=r"(x)6           :7           :8           : indirect);9  x = 42;10 11indirect:12  return x;13}14