brintos

brintos / llvm-project-archived public Read only

0
0
Text · 109 B · 7182181 Raw
10 lines · c
1int foo(int f) {2  int b = f * f; // Break here3  return b;4}5 6int main() {7  int f = foo(42);8  return f;9}10