Trivial fix - insert a space between the frame name and the instruction output.
git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@133647 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Target/ThreadPlanTracer.cpp b/source/Target/ThreadPlanTracer.cpp
index bf02353..8856427 100644
--- a/source/Target/ThreadPlanTracer.cpp
+++ b/source/Target/ThreadPlanTracer.cpp
@@ -177,6 +177,7 @@
addr_valid = m_process.GetTarget().GetSectionLoadList().ResolveLoadAddress (pc, pc_addr);
pc_addr.Dump(stream, &m_thread, Address::DumpStyleResolvedDescription, Address::DumpStyleModuleWithFileAddress);
+ stream->PutCString (" ");
if (m_disassembler)
{