[PATCH] D52627: [lldb] Start a new line for the next output if there are no symbols in the current symtab

Aaron Smith via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 1 10:10:35 PDT 2018


This revision was not accepted when it landed; it landed in state "Needs Review".
This revision was automatically updated to reflect the committed changes.
Closed by commit rL343497: [lldb] Start a new line for the next output if there are no symbols in theā€¦ (authored by asmith, committed by ).
Herald added a subscriber: llvm-commits.

Changed prior to commit:
  https://reviews.llvm.org/D52627?vs=167670&id=167762#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D52627

Files:
  lldb/trunk/source/Symbol/Symtab.cpp


Index: lldb/trunk/source/Symbol/Symtab.cpp
===================================================================
--- lldb/trunk/source/Symbol/Symtab.cpp
+++ lldb/trunk/source/Symbol/Symtab.cpp
@@ -139,6 +139,8 @@
       }
       break;
     }
+  } else {
+    s->PutCString("\n");
   }
 }
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D52627.167762.patch
Type: text/x-patch
Size: 289 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20181001/77ca6354/attachment.bin>


More information about the llvm-commits mailing list