brintos

brintos / llvm-project-archived public Read only

0
0
Text · 197 B · bd574ec Raw
18 lines · cpp
1#include "instrprof-comdat.h"2int g;3extern int bar(int);4 5int main() {6 7  FOO<int> Foo;8 9  int Res = Foo.DoIt(10);10 11  if (Res > 10)12    g = bar(10);13  else14    g = bar(1) + bar(2);15  return 0;16}17 18