[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / tools / llvm-cov / Inputs / prevent_false_instantiations.cpp
blob2a84f1dd58e4b7f5d82297bf3c9284bd6a509f21
1 #include "prevent_false_instantiations.h"
3 void func1() {
4 DO_SOMETHING();
7 void func2() {
8 DO_SOMETHING();
11 int main() {
12 func1();
13 func2();
14 return 0;