Sign in
fuchsia
/
third_party
/
llvm-project
/
d664c9066840ab57314f0de99fb4e5902b51f8cb
/
.
/
clang
/
test
/
Modules
/
Inputs
/
asm-goto
/
a.h
blob: 877213c5d009fbfb9fd6b80cab4718c231ec81c4 [
file
] [
log
] [
blame
]
int
foo
(
void
)
{
int
x
;
asm
goto
(
""
:
"=r"
(
x
)
:
:
:
indirect
);
x
=
42
;
indirect
:
return
x
;
}