[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / tools / llvm-cov / Inputs / multiple_objects / use_1.cc
blob835db293f69989851b7f711ef5b3cca4fee06ca8
1 #define DEF
2 #include "header.h"
4 int main() {
5 f1();
7 int *x;
8 f2(&x);
10 float *y;
11 f2(&y);
13 return 0;