llvm-for-llvmta/test/tools/llvm-cov/Inputs/multithreaded_report/main.cc

16 lines
202 B
C++
Raw Permalink Normal View History

2022-04-25 10:02:23 +02:00
#include "bytes.h"
#include "words.h"
int main() {
bool result = false;
if (loopBytes())
result |= true;
if (loopWords())
result |= true;
if (result)
return 0;
return result;
}