]> granicus.if.org Git - clang/commitdiff
fix an extraneous blank line in -ast-dump output.
authorChris Lattner <sabre@nondot.org>
Sat, 26 Jul 2008 19:24:43 +0000 (19:24 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 26 Jul 2008 19:24:43 +0000 (19:24 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@54097 91177308-0d34-0410-b5e6-96231b3b80d8

lib/AST/StmtDumper.cpp

index 028e762bb0bae4bb8e529e799ae7e6ec034a37cd..a710e233af7170e9582641de0080fc524cadb6b3 100644 (file)
@@ -258,7 +258,7 @@ void StmtDumper::VisitDeclStmt(DeclStmt *Node) {
 
 void StmtDumper::VisitLabelStmt(LabelStmt *Node) {
   DumpStmt(Node);
-  fprintf(F, " '%s'\n", Node->getName());
+  fprintf(F, " '%s'", Node->getName());
 }
 
 void StmtDumper::VisitGotoStmt(GotoStmt *Node) {