[Lldb-commits] [lldb] r254698 - Add a space char so step logging doesn't print things like
Jason Molenda via lldb-commits
lldb-commits at lists.llvm.org
Thu Dec 3 18:52:50 PST 2015
Author: jmolenda
Date: Thu Dec 3 20:52:49 2015
New Revision: 254698
URL: http://llvm.org/viewvc/llvm-project?rev=254698&view=rev
Log:
Add a space char so step logging doesn't print things like
"Stepping out from a.out`bar at a.c:3returning to frame"
Modified:
lldb/trunk/source/Target/ThreadPlanStepOut.cpp
Modified: lldb/trunk/source/Target/ThreadPlanStepOut.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Target/ThreadPlanStepOut.cpp?rev=254698&r1=254697&r2=254698&view=diff
==============================================================================
--- lldb/trunk/source/Target/ThreadPlanStepOut.cpp (original)
+++ lldb/trunk/source/Target/ThreadPlanStepOut.cpp Thu Dec 3 20:52:49 2015
@@ -192,7 +192,7 @@ ThreadPlanStepOut::GetDescription (Strea
// FIXME: find some useful way to present the m_return_id, since there may be multiple copies of the
// same function on the stack.
- s->Printf ("returning to frame at ");
+ s->Printf (" returning to frame at ");
if (tmp_address.SetLoadAddress (m_return_addr, &GetTarget()))
{
tmp_address.Dump(s, &GetThread(), Address::DumpStyleResolvedDescription, Address::DumpStyleLoadAddress);
More information about the lldb-commits
mailing list