[Lldb-commits] [lldb] [lldb-dap] Send an Invalidated event on thread stack change. (PR #163976)

Sergei Druzhkov via lldb-commits lldb-commits at lists.llvm.org
Fri Oct 17 11:00:16 PDT 2025


================
@@ -0,0 +1,10 @@
+#ifndef OTHER_H
+#define OTHER_H
+
+int add(int a, int b) {
+  int first = a;
+  int second = b; // thread return breakpoint
+  int result = first + second;
+  return result;
+}
+#endif // OTHER_H
----------------
DrSergei wrote:

nit: please add empty line in the end of file

https://github.com/llvm/llvm-project/pull/163976


More information about the lldb-commits mailing list