summaryrefslogtreecommitdiffstats
path: root/lldb/source
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/source')
-rw-r--r--lldb/source/Target/Thread.cpp12
1 files changed, 7 insertions, 5 deletions
diff --git a/lldb/source/Target/Thread.cpp b/lldb/source/Target/Thread.cpp
index 3620f49f617..44f326d77c3 100644
--- a/lldb/source/Target/Thread.cpp
+++ b/lldb/source/Target/Thread.cpp
@@ -479,11 +479,13 @@ Thread::SetupForResume ()
// telling the current plan it will resume, since we might change what the current
// plan is.
- StopReason stop_reason = lldb::eStopReasonInvalid;
- StopInfoSP stop_info_sp = GetStopInfo();
- if (stop_info_sp.get())
- stop_reason = stop_info_sp->GetStopReason();
- if (stop_reason == lldb::eStopReasonBreakpoint)
+// StopReason stop_reason = lldb::eStopReasonInvalid;
+// StopInfoSP stop_info_sp = GetStopInfo();
+// if (stop_info_sp.get())
+// stop_reason = stop_info_sp->GetStopReason();
+// if (stop_reason == lldb::eStopReasonBreakpoint)
+ BreakpointSiteSP bp_site_sp = GetProcess()->GetBreakpointSiteList().FindByAddress(GetRegisterContext()->GetPC());
+ if (bp_site_sp)
{
// Note, don't assume there's a ThreadPlanStepOverBreakpoint, the target may not require anything
// special to step over a breakpoint.
OpenPOWER on IntegriCloud