summaryrefslogtreecommitdiffstats
path: root/clang/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-07-26 19:24:43 +0000
committerChris Lattner <sabre@nondot.org>2008-07-26 19:24:43 +0000
commit06afbebbdde63cd4ad93c12db65129ca2c318015 (patch)
tree1ea55b8527099d63b68d22408263075c1bd47bcd /clang/lib
parentbcf2e66b3cf3e2990a8a89d5dcf8261616ff7224 (diff)
downloadbcm5719-llvm-06afbebbdde63cd4ad93c12db65129ca2c318015.tar.gz
bcm5719-llvm-06afbebbdde63cd4ad93c12db65129ca2c318015.zip
fix an extraneous blank line in -ast-dump output.
llvm-svn: 54097
Diffstat (limited to 'clang/lib')
-rw-r--r--clang/lib/AST/StmtDumper.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/AST/StmtDumper.cpp b/clang/lib/AST/StmtDumper.cpp
index 028e762bb0b..a710e233af7 100644
--- a/clang/lib/AST/StmtDumper.cpp
+++ b/clang/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) {
OpenPOWER on IntegriCloud