[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / tools / llvm-cov / Inputs / multithreaded_report / main.cc
blobb5bc6547c1ba7762168fea08a02da5e23270945f
1 #include "bytes.h"
2 #include "words.h"
4 int main() {
5 bool result = false;
6 if (loopBytes())
7 result |= true;
8 if (loopWords())
9 result |= true;
11 if (result)
12 return 0;
14 return result;