[Lldb-commits] [lldb] [lldb-dap] assembly breakpoints (PR #139969)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Tue May 20 08:10:48 PDT 2025
================
@@ -1620,6 +1620,88 @@ void DAP::EventThread() {
}
}
+std::vector<protocol::Breakpoint> DAP::SetSourceBreakpoints(
+ const protocol::Source &source,
+ const std::optional<std::vector<protocol::SourceBreakpoint>> &breakpoints) {
+ std::vector<protocol::Breakpoint> response_breakpoints;
+ if (source.sourceReference) {
+ // breakpoint set by assembly source.
----------------
JDevlieghere wrote:
```suggestion
// Breakpoint set by assembly source.
```
https://github.com/llvm/llvm-project/pull/139969
More information about the lldb-commits
mailing list