[Lldb-commits] [lldb] r253088 - Remove debugging code left in by accident.
Zachary Turner via lldb-commits
lldb-commits at lists.llvm.org
Fri Nov 13 13:35:07 PST 2015
Author: zturner
Date: Fri Nov 13 15:35:07 2015
New Revision: 253088
URL: http://llvm.org/viewvc/llvm-project?rev=253088&view=rev
Log:
Remove debugging code left in by accident.
Modified:
lldb/trunk/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.cpp
Modified: lldb/trunk/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.cpp?rev=253088&r1=253087&r2=253088&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.cpp (original)
+++ lldb/trunk/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.cpp Fri Nov 13 15:35:07 2015
@@ -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");
More information about the lldb-commits
mailing list