brintos

brintos / llvm-project-archived public Read only

0
0
Text · 240 B · dd3fcc2 Raw
20 lines · c
1void bar() {2  int val = 32; // breakpoint here3}4 5void at_line_zero() {}6 7int foo();8 9int main(int argc, char const *argv[]) {10  foo();11  return 0;12}13 14int foo() {15  bar(); // foo call bar16#line 0 "test.cpp"17  at_line_zero();18  return 0;19}20