brintos

brintos / llvm-project-archived public Read only

0
0
Text · 182 B · 343da9d Raw
11 lines · cpp
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