diff options
author | Zachary Turner <zturner@google.com> | 2015-11-13 21:35:07 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-11-13 21:35:07 +0000 |
commit | c12392c956bd178ae15ebaf4556b5d642a4cadbe (patch) | |
tree | 9ad2eaf62fcfc51d6a3e0ee5ed0a7a331e57dff6 /lldb/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.cpp | |
parent | 920c587e64de65e12e22a0c57fde08c922bb18e7 (diff) | |
download | bcm5719-llvm-c12392c956bd178ae15ebaf4556b5d642a4cadbe.tar.gz bcm5719-llvm-c12392c956bd178ae15ebaf4556b5d642a4cadbe.zip |
Remove debugging code left in by accident.
llvm-svn: 253088
Diffstat (limited to 'lldb/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.cpp')
-rw-r--r-- | lldb/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.cpp b/lldb/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.cpp index 67f8ad1c409..2cbd85bfa11 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.cpp +++ b/lldb/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.cpp @@ -146,7 +146,6 @@ PythonExceptionState::Format() const } else { - __debugbreak(); // Otherwise, append some information about why we were unable to // obtain the backtrace. PythonString bt_error = bt_error_state.GetValue().Str(); @@ -158,7 +157,6 @@ PythonExceptionState::Format() const std::string PythonExceptionState::ReadBacktrace() const { - __debugbreak(); std::string retval("backtrace unavailable"); auto traceback_module = PythonModule::ImportModule("traceback"); |