xref: /llvm-project/compiler-rt/test/profile/Inputs/instrprof-debug-info-correlate-main.cpp (revision 11d3074267324e811ade248a991564fa6722754e)
1 #include "instrprof-debug-info-correlate-bar.h"
2 
3 typedef int (*FP)(int);
4 FP Fps[3] = {foo, bar, unused};
5 
main()6 int main() {
7   for (int i = 0; i < 5; i++)
8     Fps[i % 2](i);
9   return 0;
10 }
11