================
@@ -0,0 +1,14 @@
+void bar() {
+ int val = 32; // breakpoint here
+}
+
+int foo() {
+ bar(); // foo call bar
+#line 0 "test.cpp"
+ return 0;
----------------
adrian-prantl wrote:
I would suggest using a function call for more predictable code generation
```
void at_line_zero() {}
int foo() {
bar(); // foo call bar
#line 0 "test.cpp"
at_line_zero()
```
https://github.com/llvm/llvm-project/pull/165944
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits