[Lldb-commits] [lldb] Add the ability to break on call-site locations, improve inline stepping (PR #112939)
Med Ismail Bennani via lldb-commits
lldb-commits at lists.llvm.org
Fri Oct 18 11:28:04 PDT 2024
================
@@ -656,6 +671,49 @@ void BreakpointLocation::SendBreakpointLocationChangedEvent(
}
}
+std::optional<uint32_t> BreakpointLocation::GetSuggestedStackFrameIndex() {
+ if (!GetPreferredLineEntry())
+ return {};
+ LineEntry preferred = *GetPreferredLineEntry();
----------------
medismailben wrote:
ditto
https://github.com/llvm/llvm-project/pull/112939
More information about the lldb-commits
mailing list