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
/
Import
/
if-stmt
/
Inputs
/
F.cpp
blob
a7062c94ea76f3e1287e01ee9b865fef5f6028eb
1
void
f
() {
2
if
(
true
)
3
return
;
4
5
if
(
int
j
=
3
)
6
return
;
7
8
if
(
int
j
;
true
)
9
return
;
10
11
if
(
true
)
12
return
;
13
else
14
return
;
15
16
if
(
true
) {
17
return
;
18
}
else
{
19
return
;
20
}
21
}