[Lldb-commits] [lldb] Add a scripted way to re-present a stop location (PR #158128)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Tue Oct 7 13:05:06 PDT 2025
================
@@ -567,6 +567,15 @@ SBError SBBreakpoint::AddLocation(SBAddress &address) {
return error;
}
+SBBreakpointLocation SBBreakpoint::AddFacadeLocation() {
+ BreakpointSP bkpt_sp = GetSP();
+ if (!bkpt_sp) {
+ return {};
+ }
----------------
JDevlieghere wrote:
```suggestion
if (!bkpt_sp)
return {};
```
https://github.com/llvm/llvm-project/pull/158128
More information about the lldb-commits
mailing list