brintos

brintos / llvm-project-archived public Read only

0
0
Text · 197 B · ad0c1c0 Raw
12 lines · c
1int step_out_of_here(int a) {2  return a + 5; // Set breakpoint here3}4 5int main() {6#line 07  int v = step_out_of_here(3) + 7;8#line 99  v += 11;  // Should stop here10  return v; // Ran too far11}12