[Lldb-commits] [lldb] r151370 - /lldb/trunk/source/Plugins/Process/Utility/RegisterContextLLDB.cpp
Jim Ingham
jingham at apple.com
Fri Feb 24 09:09:34 PST 2012
Author: jingham
Date: Fri Feb 24 11:09:34 2012
New Revision: 151370
URL: http://llvm.org/viewvc/llvm-project?rev=151370&view=rev
Log:
Patch from Filipe Cabecinhas fixing a typo in the "lldb unwind" log output.
Modified:
lldb/trunk/source/Plugins/Process/Utility/RegisterContextLLDB.cpp
Modified: lldb/trunk/source/Plugins/Process/Utility/RegisterContextLLDB.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/Utility/RegisterContextLLDB.cpp?rev=151370&r1=151369&r2=151370&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/Utility/RegisterContextLLDB.cpp (original)
+++ lldb/trunk/source/Plugins/Process/Utility/RegisterContextLLDB.cpp Fri Feb 24 11:09:34 2012
@@ -500,7 +500,7 @@
if (active_row && log)
{
StreamString active_row_strm;
- active_row->Dump(active_row_strm, m_full_unwind_plan_sp.get(), &m_thread, m_start_pc.GetLoadAddress(exe_ctx.GetTargetPtr()));
+ active_row->Dump(active_row_strm, m_fast_unwind_plan_sp.get(), &m_thread, m_start_pc.GetLoadAddress(exe_ctx.GetTargetPtr()));
log->Printf("%*sFrame %u active row: %s",
m_frame_number < 100 ? m_frame_number : 100, "", m_frame_number, active_row_strm.GetString().c_str());
}
More information about the lldb-commits
mailing list