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
/
CoverageMapping
/
Inputs
/
header1.h
blob
d01e813b40b395b4051c7946318625e192f70118
1
#ifndef HEADER1_H
2
#define HEADER1_H
3
4
inline
void
func
(
int
i
) {
5
int
x
=
0
;
6
if
(
i
==
0
) {
7
x
=
1
;
8
}
else
{
9
x
=
2
;
10
}
11
}
12
static void
static_func
(
int
j
) {
13
int
x
=
0
;
14
if
(
j
==
x
) {
15
x
= !
j
;
16
}
else
{
17
x
=
42
;
18
}
19
j
=
x
*
j
;
20
}
21
static void
static_func2
(
int
j
) {
22
int
x
=
0
;
23
if
(
j
==
x
) {
24
x
= !
j
;
25
}
else
{
26
x
=
42
;
27
}
28
j
=
x
*
j
;
29
}
30
31
#endif
// HEADER1_H