Index: lldb/source/Plugins/Trace/intel-pt/TraceIntelPT.cpp =================================================================== --- lldb/source/Plugins/Trace/intel-pt/TraceIntelPT.cpp +++ lldb/source/Plugins/Trace/intel-pt/TraceIntelPT.cpp @@ -110,12 +110,12 @@ void TraceIntelPT::DumpTraceInfo(Thread &thread, Stream &s, bool verbose) { Optional raw_size = GetRawTraceSize(thread); - s.Printf("thread #%u: tid = %" PRIu64, thread.GetIndexID(), thread.GetID()); + s.Printf("\nthread #%u: tid = %" PRIu64, thread.GetIndexID(), thread.GetID()); if (!raw_size) { s.Printf(", not traced\n"); return; } - s.Printf("\nRaw trace size: %zu bytes\n", *raw_size); + s.Printf("\n Raw trace size: %zu bytes\n", *raw_size); return; }