1#include "instrprof-debug-info-correlate-bar.h"2 3typedef int (*FP)(int);4FP Fps[3] = {foo, bar, unused};5 6int main() {7 for (int i = 0; i < 5; i++)8 Fps[i % 2](i);9 return 0;10}11