The Nest
Explore
Sign in
nuudlman
llvm
clang
test
Modules
Inputs
asm-goto
a.h
0
Compiler projects using llvm
Code
Changes
Tags
Discussions
main
int
foo
(
void
)
{
int
x
;
asm
goto
(
"
"
:
"
=r
"
(
x
)
:
:
:
indirect
)
;
x
=
42
;
indirect
:
return
x
;
}