diff options
author | Jason Molenda <jmolenda@apple.com> | 2016-01-08 02:26:03 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2016-01-08 02:26:03 +0000 |
commit | 7cb9d98cf9df2d6544cad826ce9e3719c406f0cf (patch) | |
tree | 1b31911e0a54de0ae976d90bc8d11dadeebad4a0 /lldb/source/Target/Thread.cpp | |
parent | bfcff3856a5590d3187999e6c6c08057ef36e261 (diff) | |
download | llvm-7cb9d98cf9df2d6544cad826ce9e3719c406f0cf.zip llvm-7cb9d98cf9df2d6544cad826ce9e3719c406f0cf.tar.gz llvm-7cb9d98cf9df2d6544cad826ce9e3719c406f0cf.tar.bz2 |
Revert r257117 "Performance improvement: Change lldb so that it
puts a breakpoint" it is causing a regression in the TestStepNoDebug
test case on ubuntu 14.04 with gcc 4.9.2. Thanks for the email
Siva. I'll recommit when I've figured out the regression.
llvm-svn: 257138
Diffstat (limited to 'lldb/source/Target/Thread.cpp')
-rw-r--r-- | lldb/source/Target/Thread.cpp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/lldb/source/Target/Thread.cpp b/lldb/source/Target/Thread.cpp index 551e480..9f9da97 100644 --- a/lldb/source/Target/Thread.cpp +++ b/lldb/source/Target/Thread.cpp @@ -1591,7 +1591,7 @@ Thread::QueueThreadPlanForStepOut(bool abort_other_plans, Vote stop_vote, Vote run_vote, uint32_t frame_idx, - LazyBool step_out_avoids_code_without_debug_info) + LazyBool step_out_avoids_code_withoug_debug_info) { ThreadPlanSP thread_plan_sp (new ThreadPlanStepOut (*this, addr_context, @@ -1600,7 +1600,7 @@ Thread::QueueThreadPlanForStepOut(bool abort_other_plans, stop_vote, run_vote, frame_idx, - step_out_avoids_code_without_debug_info)); + step_out_avoids_code_withoug_debug_info)); if (thread_plan_sp->ValidatePlan(nullptr)) { @@ -1620,8 +1620,7 @@ Thread::QueueThreadPlanForStepOutNoShouldStop(bool abort_other_plans, bool stop_other_threads, Vote stop_vote, Vote run_vote, - uint32_t frame_idx, - bool continue_to_next_branch) + uint32_t frame_idx) { ThreadPlanSP thread_plan_sp(new ThreadPlanStepOut (*this, addr_context, @@ -1630,8 +1629,7 @@ Thread::QueueThreadPlanForStepOutNoShouldStop(bool abort_other_plans, stop_vote, run_vote, frame_idx, - eLazyBoolNo, - continue_to_next_branch)); + eLazyBoolNo)); ThreadPlanStepOut *new_plan = static_cast<ThreadPlanStepOut *>(thread_plan_sp.get()); new_plan->ClearShouldStopHereCallbacks(); |