[Lldb-commits] [lldb] abc0093 - [lldb][windows] fix build issue (#195089)
via lldb-commits
lldb-commits at lists.llvm.org
Thu Apr 30 07:11:43 PDT 2026
Author: Charles Zablit
Date: 2026-04-30T14:11:37Z
New Revision: abc009327aee7d173f8405da1a6bb20b68a8fbe5
URL: https://github.com/llvm/llvm-project/commit/abc009327aee7d173f8405da1a6bb20b68a8fbe5
DIFF: https://github.com/llvm/llvm-project/commit/abc009327aee7d173f8405da1a6bb20b68a8fbe5.diff
LOG: [lldb][windows] fix build issue (#195089)
Fix a build issue on Windows introduced by
https://github.com/llvm/llvm-project/pull/192964.
Added:
Modified:
lldb/source/Plugins/Process/Windows/Common/ProcessWindows.cpp
Removed:
################################################################################
diff --git a/lldb/source/Plugins/Process/Windows/Common/ProcessWindows.cpp b/lldb/source/Plugins/Process/Windows/Common/ProcessWindows.cpp
index 460225ea455e3..c41547a2c0961 100644
--- a/lldb/source/Plugins/Process/Windows/Common/ProcessWindows.cpp
+++ b/lldb/source/Plugins/Process/Windows/Common/ProcessWindows.cpp
@@ -415,7 +415,7 @@ void ProcessWindows::RefreshStateAfterStop() {
// If we're at a BreakpointSite, mark this as an Unexecuted Breakpoint.
// We'll clear that state if we've actually executed the breakpoint.
BreakpointSiteSP site(GetBreakpointSiteList().FindByAddress(pc));
- if (site && site->IsEnabled())
+ if (site && IsBreakpointSiteEnabled(*site))
stop_thread->SetThreadStoppedAtUnexecutedBP(pc);
switch (active_exception->GetExceptionCode()) {
More information about the lldb-commits
mailing list