[Lldb-commits] [lldb] [lldb] Introduce SBFrameList for lazy frame iteration (PR #166651)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Wed Nov 5 15:51:39 PST 2025
================
@@ -0,0 +1,22 @@
+#include <stdio.h>
+
+int c(int val) {
+ // Set break point at this line
+ return val + 3;
+}
+
+int b(int val) {
+ int result = c(val);
+ return result;
+}
+
+int a(int val) {
+ int result = b(val);
+ return result;
+}
+
+int main() {
+ int result = a(1);
+ printf("Result: %d\n", result);
+ return 0;
+}
----------------
JDevlieghere wrote:
Newline still missing.
https://github.com/llvm/llvm-project/pull/166651
More information about the lldb-commits
mailing list