fix an extraneous blank line in -ast-dump output.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@54097 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/AST/StmtDumper.cpp b/lib/AST/StmtDumper.cpp
index 028e762..a710e23 100644
--- a/lib/AST/StmtDumper.cpp
+++ b/lib/AST/StmtDumper.cpp
@@ -258,7 +258,7 @@
 
 void StmtDumper::VisitLabelStmt(LabelStmt *Node) {
   DumpStmt(Node);
-  fprintf(F, " '%s'\n", Node->getName());
+  fprintf(F, " '%s'", Node->getName());
 }
 
 void StmtDumper::VisitGotoStmt(GotoStmt *Node) {