brintos

brintos / llvm-project-archived public Read only

0
0
Text · 159 B · d68a369 Raw
15 lines · c
1void bar();2void foo(int n) {3  for (int i = 0; i < n; ++i) for (int j = 0; j < n; ++j)4    bar();5}6 7void quack() {8  foo(4);9}10 11void quack2() {12  foo(4);13}14 15