[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / tools / llvm-cov / Inputs / multiple_objects / use_2.cc
blob52965599a3a431490dc5d5e0fb2c5f293a71aa42
1 #undef DEF
2 #include "header.h"
4 static int foo() {
5 return 0;
8 int main() {
9 f1();
11 long *x;
12 f2(&x);
14 double *y;
15 f2(&y);
17 f3();
19 return foo();