[Lldb-commits] [lldb] [lldb] Define breakpoint location "." to mean the location(s) at which the current thread is stopped (PR #194272)
Dave Lee via lldb-commits
lldb-commits at lists.llvm.org
Tue Apr 28 14:04:57 PDT 2026
================
@@ -55,6 +59,14 @@ bool BreakpointIDList::Contains(BreakpointID bp_id) const {
return llvm::is_contained(m_breakpoint_ids, bp_id);
}
+static std::string LocationIDForStop(StopInfoSP stop_info_sp, uint32_t idx) {
+ break_id_t bp_id = stop_info_sp->GetStopReasonDataAtIndex(idx);
----------------
kastiglione wrote:
does an assert sound good to you?
https://github.com/llvm/llvm-project/pull/194272
More information about the lldb-commits
mailing list