diff options
Diffstat (limited to 'lldb/source/Target/ThreadPlanCallFunction.cpp')
-rw-r--r-- | lldb/source/Target/ThreadPlanCallFunction.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Target/ThreadPlanCallFunction.cpp b/lldb/source/Target/ThreadPlanCallFunction.cpp index 31027cd..50dcb66 100644 --- a/lldb/source/Target/ThreadPlanCallFunction.cpp +++ b/lldb/source/Target/ThreadPlanCallFunction.cpp @@ -291,10 +291,10 @@ bool ThreadPlanCallFunction::DoPlanExplainsStop(Event *event_ptr) { BreakpointSiteSP bp_site_sp; bp_site_sp = m_process.GetBreakpointSiteList().FindByID(break_site_id); if (bp_site_sp) { - uint32_t num_owners = bp_site_sp->GetNumberOfOwners(); + uint32_t num_owners = bp_site_sp->GetNumberOfConstituents(); bool is_internal = true; for (uint32_t i = 0; i < num_owners; i++) { - Breakpoint &bp = bp_site_sp->GetOwnerAtIndex(i)->GetBreakpoint(); + Breakpoint &bp = bp_site_sp->GetConstituentAtIndex(i)->GetBreakpoint(); LLDB_LOGF(log, "ThreadPlanCallFunction::PlanExplainsStop: hit " "breakpoint %d while calling function", |