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);


_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to