blob: 877213c5d009fbfb9fd6b80cab4718c231ec81c4 [file] [log] [blame]
int foo(void) {
int x;
asm goto(""
: "=r"(x)
:
:
: indirect);
x = 42;
indirect:
return x;
}