diff options
author | Jim Ingham <jingham@apple.com> | 2017-08-23 19:40:21 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2017-08-23 19:40:21 +0000 |
commit | a4bb80b2112de500643272ee34f44c53066a93bf (patch) | |
tree | 626ad8661690ce11c4a68e035780ef295baf378e /lldb/source/Target/ThreadPlanStepInRange.cpp | |
parent | e3a5e8f03d9745764fa516baef37b23978a8fb46 (diff) | |
download | bcm5719-llvm-a4bb80b2112de500643272ee34f44c53066a93bf.tar.gz bcm5719-llvm-a4bb80b2112de500643272ee34f44c53066a93bf.zip |
Log whether we found a step out plan or not.
llvm-svn: 311590
Diffstat (limited to 'lldb/source/Target/ThreadPlanStepInRange.cpp')
-rw-r--r-- | lldb/source/Target/ThreadPlanStepInRange.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lldb/source/Target/ThreadPlanStepInRange.cpp b/lldb/source/Target/ThreadPlanStepInRange.cpp index caaaffea8e8..6c5a9954f23 100644 --- a/lldb/source/Target/ThreadPlanStepInRange.cpp +++ b/lldb/source/Target/ThreadPlanStepInRange.cpp @@ -191,8 +191,12 @@ bool ThreadPlanStepInRange::ShouldStop(Event *event_ptr) { if (!m_sub_plan_sp) { // Otherwise check the ShouldStopHere for step out: m_sub_plan_sp = CheckShouldStopHereAndQueueStepOut(frame_order); - if (log) - log->Printf("ShouldStopHere says we should step out of this frame."); + if (log) { + if (m_sub_plan_sp) + log->Printf("ShouldStopHere found plan to step out of this frame."); + else + log->Printf("ShouldStopHere no plan to step out of this frame."); + } } else if (log) { log->Printf( "Thought I stepped out, but in fact arrived at a trampoline."); |