summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Molenda <jmolenda@apple.com>2015-12-04 02:52:49 +0000
committerJason Molenda <jmolenda@apple.com>2015-12-04 02:52:49 +0000
commitafdf6cbf3ce6c9479e6d04a97bbd95833f5949fb (patch)
treeb266811726602fa27661b8450cd35d06548aa676
parent35dad13714ee43a5fd15ee44af21c6813a496f62 (diff)
downloadbcm5719-llvm-afdf6cbf3ce6c9479e6d04a97bbd95833f5949fb.tar.gz
bcm5719-llvm-afdf6cbf3ce6c9479e6d04a97bbd95833f5949fb.zip
Add a space char so step logging doesn't print things like
"Stepping out from a.out`bar at a.c:3returning to frame" llvm-svn: 254698
-rw-r--r--lldb/source/Target/ThreadPlanStepOut.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Target/ThreadPlanStepOut.cpp b/lldb/source/Target/ThreadPlanStepOut.cpp
index 18b0e4af2d6..8ee8d1c4e49 100644
--- a/lldb/source/Target/ThreadPlanStepOut.cpp
+++ b/lldb/source/Target/ThreadPlanStepOut.cpp
@@ -192,7 +192,7 @@ ThreadPlanStepOut::GetDescription (Stream *s, lldb::DescriptionLevel level)
// 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);
OpenPOWER on IntegriCloud