repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
Modules
/
Inputs
/
asm-goto
/
a.h
blob
877213c5d009fbfb9fd6b80cab4718c231ec81c4
1
int
foo
(
void
) {
2
int
x
;
3
4
asm goto
(
""
5
:
"=r"
(
x
)
6
:
7
:
8
:
indirect
);
9
x
=
42
;
10
11
indirect
:
12
return
x
;
13
}