brintos

brintos / llvm-project-archived public Read only

0
0
Text · 118 B · 20c17f7 Raw
11 lines · c
1int foo(int a, int b, int c) {2  int x = a + b;3  int y = x + c;4  return y;5}6 7int bar(int a) {8  a++;9  return a;10}11