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
This commit is contained in:
Jason Molenda 2015-12-04 02:52:49 +00:00
parent 35dad13714
commit afdf6cbf3c
1 changed files with 1 additions and 1 deletions

View File

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