From: Chris Lattner Date: Sat, 26 Jul 2008 19:24:43 +0000 (+0000) Subject: fix an extraneous blank line in -ast-dump output. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3cb640bad3e6d8a40897f0a02c5ed6dcb14d1418;p=clang 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 028e762bb0..a710e233af 100644 --- a/lib/AST/StmtDumper.cpp +++ b/lib/AST/StmtDumper.cpp @@ -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) {