xref: /aosp_15_r20/external/compiler-rt/test/profile/Inputs/instrprof-dynamic-main.cpp (revision 7c3d14c8b49c529e04be81a3ce6f5cc23712e4c6)
1 #include "instrprof-dynamic-header.h"
foo(int K)2 void foo(int K) { if (K) {} }
main(int argc,char * argv[])3 int main(int argc, char *argv[]) {
4   foo(5);
5   bar<void>(1);
6   a();
7   b();
8   return 0;
9 }
10