forked from OSchip/llvm-project
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:
parent
35dad13714
commit
afdf6cbf3c
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue