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]
/
compiler-rt
/
test
/
profile
/
Inputs
/
instrprof-gcov-multiple-bbs-single-line.c
blob
a2e187b5cb61f8c93d4beae7a1318c9a39c85d82
1
int
main
(
void
)
2
{
3
int
var
;
4
5
int
a
=
1
;
6
if
(
a
) {
7
var
++;
8
}
9
10
if
(
a
) {}
11
12
int
b
=
0
;
13
if
(
b
) {
14
var
++;
15
}
16
17
if
(
b
) {}
18
19
return
0
;
20
}