diff options
author | Jason Molenda <jmolenda@apple.com> | 2015-12-04 02:52:49 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2015-12-04 02:52:49 +0000 |
commit | afdf6cbf3ce6c9479e6d04a97bbd95833f5949fb (patch) | |
tree | b266811726602fa27661b8450cd35d06548aa676 | |
parent | 35dad13714ee43a5fd15ee44af21c6813a496f62 (diff) | |
download | bcm5719-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.cpp | 2 |
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); |