bolt/deps/llvm-18.1.8/compiler-rt/test/profile/Inputs/instrprof-dynamic-main.cpp

10 lines
157 B
C++
Raw Normal View History

2025-02-14 19:21:04 +01:00
#include "instrprof-dynamic-header.h"
void foo(int K) { if (K) {} }
int main(int argc, char *argv[]) {
foo(5);
bar<void>(1);
a();
b();
return 0;
}