diff options
author | Jim Ingham <jingham@apple.com> | 2012-02-24 17:09:34 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2012-02-24 17:09:34 +0000 |
commit | e8dd130762b7f8c1892371cf526702cafd9fcbe0 (patch) | |
tree | dc8751dcf7223612eb2225817cdd233d4794f98f /lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp | |
parent | 18de54b1a6d6b98bc764d5d63c40a70b6ec0bfea (diff) | |
download | bcm5719-llvm-e8dd130762b7f8c1892371cf526702cafd9fcbe0.tar.gz bcm5719-llvm-e8dd130762b7f8c1892371cf526702cafd9fcbe0.zip |
Patch from Filipe Cabecinhas fixing a typo in the "lldb unwind" log output.
llvm-svn: 151370
Diffstat (limited to 'lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp b/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp index 25b84691482..03de3d1355c 100644 --- a/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp +++ b/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp @@ -500,7 +500,7 @@ RegisterContextLLDB::InitializeNonZerothFrame() 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()); } |