Author: Felipe de Azevedo Piovezan Date: 2026-05-27T07:21:28+02:00 New Revision: 18ddec75ba8241bb49e290cbc60c05dca7ab6250
URL: https://github.com/llvm/llvm-project/commit/18ddec75ba8241bb49e290cbc60c05dca7ab6250 DIFF: https://github.com/llvm/llvm-project/commit/18ddec75ba8241bb49e290cbc60c05dca7ab6250.diff LOG: [lldb] Use private stop for breakpoint-delaying decision (#199639) Added: Modified: lldb/source/Target/Process.cpp Removed: ################################################################################ diff --git a/lldb/source/Target/Process.cpp b/lldb/source/Target/Process.cpp index 39399480b0806..83c8f434e9a57 100644 --- a/lldb/source/Target/Process.cpp +++ b/lldb/source/Target/Process.cpp @@ -1602,7 +1602,7 @@ llvm::Error Process::ExecuteBreakpointSiteAction(BreakpointSite &site, BreakpointAction action, bool forbid_delay) { // Breakpoints immediately affect running processes, so do not delay them. - forbid_delay |= IsRunning(); + forbid_delay |= StateIsRunningState(GetPrivateState()); if (forbid_delay) if (llvm::Error E = FlushDelayedBreakpoints()) _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
