[Lldb-commits] [lldb] [LLDB] Add a way to avoid manual stepping over breakpoints when resuming (PR #165760)
via lldb-commits
lldb-commits at lists.llvm.org
Thu Oct 30 12:23:40 PDT 2025
================
@@ -494,6 +494,49 @@ void ThreadList::DiscardThreadPlans() {
(*pos)->DiscardThreadPlans(true);
}
+void ThreadList::SetUpStepOverBreakpointBeforeResumeIfNeeded(
----------------
jimingham wrote:
That's better. It still doesn't stop someone from adding so code below this that isn't breakpoint related, which will then work on every platform but yours because they didn't notice this return. If the early return & breakpoint handling were in a separate method, then that mistake wouldn't be possible.
Not terribly important, however.
https://github.com/llvm/llvm-project/pull/165760
More information about the lldb-commits
mailing list