llvm-for-llvmta/tools/clang/test/Modules/Inputs/asm-goto/a.h

14 lines
146 B
C

int foo(void) {
int x;
asm goto(""
: "=r"(x)
:
:
: indirect);
x = 42;
indirect:
return x;
}