brintos

brintos / llvm-project-archived public Read only

0
0
Text · 90 B · d22b0a5 Raw
10 lines · c
1int g1 = 0;2int g2 = 1;3 4void foo(int n) {5  if (n % 5 == 0)6    g1++;7  else8    g2++;9}10