[Lldb-commits] [lldb] [lldb][Windows] ignore loader breakpoints in system modules (PR #208233)

Charles Zablit via lldb-commits lldb-commits at lists.llvm.org
Mon Jul 20 03:22:30 PDT 2026


================
@@ -664,6 +627,17 @@ NativeProcessWindows::HandleBreakpointException(const ExceptionRecord &record) {
     return ExceptionResult::BreakInDebugger;
   }
 
+  if (m_expecting_loader_int3) {
+    m_expecting_loader_int3 = false;
----------------
charles-zablit wrote:

That's a bug. I moved the call to `IsSystemModuleAddress` up the chain in both places where this happens.

https://github.com/llvm/llvm-project/pull/208233


More information about the lldb-commits mailing list