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_1.cc
blob
835db293f69989851b7f711ef5b3cca4fee06ca8
1
#define DEF
2
#include
"header.h"
3
4
int
main
() {
5
f1
();
6
7
int
*
x
;
8
f2
(&
x
);
9
10
float
*
y
;
11
f2
(&
y
);
12
13
return
0
;
14
}