diff options
author | Vince Harron <vince@nethacker.com> | 2015-05-15 21:43:26 +0000 |
---|---|---|
committer | Vince Harron <vince@nethacker.com> | 2015-05-15 21:43:26 +0000 |
commit | a66c695340798c2273ea19208f732a91e5ed3a3d (patch) | |
tree | c1aee3b23542954601d070d7527f4ca7ed04642b /lldb/source/Core/IOHandler.cpp | |
parent | 80735a2d8e9c43be438bd1d647cd0a02d394aa84 (diff) | |
download | bcm5719-llvm-a66c695340798c2273ea19208f732a91e5ed3a3d.tar.gz bcm5719-llvm-a66c695340798c2273ea19208f732a91e5ed3a3d.zip |
Reverting r237460 to fix test failures introduced on OSX & Linux
TestExitDuringStep.py
TestNumThreads.py
TestThreadExit.py
TestThreadStates.py
llvm-svn: 237479
Diffstat (limited to 'lldb/source/Core/IOHandler.cpp')
-rw-r--r-- | lldb/source/Core/IOHandler.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lldb/source/Core/IOHandler.cpp b/lldb/source/Core/IOHandler.cpp index 77e9202402d..81afae545ea 100644 --- a/lldb/source/Core/IOHandler.cpp +++ b/lldb/source/Core/IOHandler.cpp @@ -5326,8 +5326,7 @@ public: eLazyBoolCalculate, // Check inlines using global setting eLazyBoolCalculate, // Skip prologue using global setting, false, // internal - false, // request_hardware - eLazyBoolCalculate); // move_to_nearest_code + false); // request_hardware // Make breakpoint one shot bp_sp->GetOptions()->SetOneShot(true); exe_ctx.GetProcessRef().Resume(); @@ -5362,8 +5361,7 @@ public: eLazyBoolCalculate, // Check inlines using global setting eLazyBoolCalculate, // Skip prologue using global setting, false, // internal - false, // request_hardware - eLazyBoolCalculate); // move_to_nearest_code + false); // request_hardware } } else if (m_selected_line < GetNumDisassemblyLines()) |