brintos

brintos / llvm-project-archived public Read only

0
0
Text · 164 B · 4037ea5 Raw
22 lines · cpp
1int global = 42;2 3int4bar(int x)5{6  int y = 4*x + global;7  return y;8}9 10int11foo(int x)12{13  int y = 2*bar(3*x);14  return y;15}16 17int18main()19{20  return 0 * foo(1);21}22