[Lldb-commits] [lldb] [LLDB][Windows] Fix watchpoints for Windows (PR #95446)

Jason Molenda via lldb-commits lldb-commits at lists.llvm.org
Thu Jun 13 11:16:54 PDT 2024


================
@@ -406,7 +406,7 @@ void ProcessWindows::RefreshStateAfterStop() {
                m_session_data->m_debugger->GetProcess().GetProcessId(), pc, id);
 
       stop_info = StopInfo::CreateStopReasonWithWatchpointID(
-          *stop_thread, id, m_watchpoints[id].address);
+          *stop_thread, id);
----------------
jasonmolenda wrote:

Ah yikes, I believe I broke this in https://reviews.llvm.org/D147816 and that `addr_t` is being treated like a boolean now :( 

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


More information about the lldb-commits mailing list