[Lldb-commits] [lldb] [lldb-dap] Allow returning multiple breakpoints in "stopped" event (PR #149133)

Stephen Tozer via lldb-commits lldb-commits at lists.llvm.org
Wed Jul 16 09:49:51 PDT 2025


================
@@ -33,7 +33,7 @@ int main(int argc, char const *argv[]) {
   if (foo == nullptr) {
     fprintf(stderr, "%s\n", dlerror());
     exit(2);
-  }
+  } // end of foo check
----------------
SLTozer wrote:

This comment is being used to set the breakpoint from [here](https://github.com/llvm/llvm-project/pull/149133/files#diff-2c5fdd0709604b56733e44bc10675e3be1a825ce7d92dc1fb32fe1e243dec964R407) in the test - thinking about it, the only real requirement for where the second breakpoint appears is that it be on a line that is not breakpoint-able that precedes a breakpoint-able line.

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


More information about the lldb-commits mailing list