summaryrefslogtreecommitdiffstats
path: root/lldb/source/Target/ThreadPlanStepOverBreakpoint.cpp
diff options
context:
space:
mode:
authorJim Ingham <jingham@apple.com>2013-06-04 01:40:51 +0000
committerJim Ingham <jingham@apple.com>2013-06-04 01:40:51 +0000
commit60c4118c88d27b67235ecf3994560bc784f9150e (patch)
treed8eb72dd7203a0106d7d441dee37ec0c43faefb9 /lldb/source/Target/ThreadPlanStepOverBreakpoint.cpp
parent19978553d4ed6aa71865cb1ece6aa65c22520525 (diff)
downloadbcm5719-llvm-60c4118c88d27b67235ecf3994560bc784f9150e.tar.gz
bcm5719-llvm-60c4118c88d27b67235ecf3994560bc784f9150e.zip
If ThreadPlanCallFunction hasn't set its notion of the "real stop info" yet, just return the current PrivateStopInfo.
Also renamed a few more places where we were using StopReason in functions that were returning StopInfo's. <rdar://problem/14042692> llvm-svn: 183177
Diffstat (limited to 'lldb/source/Target/ThreadPlanStepOverBreakpoint.cpp')
-rw-r--r--lldb/source/Target/ThreadPlanStepOverBreakpoint.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Target/ThreadPlanStepOverBreakpoint.cpp b/lldb/source/Target/ThreadPlanStepOverBreakpoint.cpp
index ff4fee72a3a..dc011e54540 100644
--- a/lldb/source/Target/ThreadPlanStepOverBreakpoint.cpp
+++ b/lldb/source/Target/ThreadPlanStepOverBreakpoint.cpp
@@ -61,7 +61,7 @@ ThreadPlanStepOverBreakpoint::ValidatePlan (Stream *error)
bool
ThreadPlanStepOverBreakpoint::DoPlanExplainsStop (Event *event_ptr)
{
- StopInfoSP stop_info_sp = GetPrivateStopReason();
+ StopInfoSP stop_info_sp = GetPrivateStopInfo ();
if (stop_info_sp)
{
StopReason reason = stop_info_sp->GetStopReason();
OpenPOWER on IntegriCloud