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
[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git]
/
llvm
/
test
/
tools
/
llvm-cov
/
Inputs
/
multiple_objects
/
use_2.cc
blob
52965599a3a431490dc5d5e0fb2c5f293a71aa42
1
#undef DEF
2
#include
"header.h"
3
4
static int
foo
() {
5
return
0
;
6
}
7
8
int
main
() {
9
f1
();
10
11
long
*
x
;
12
f2
(&
x
);
13
14
double
*
y
;
15
f2
(&
y
);
16
17
f3
();
18
19
return
foo
();
20
}