brintos

brintos / llvm-project-archived public Read only

0
0
Text · 113 B · 0982ba2 Raw
11 lines · c
1void bar();2 3void foo() {4  for (int i = 0; i < 5; ++i)5    bar();6 7  for (int i = 0; i < 11; ++i)8    bar();9}10 11