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
This commit is contained in:
Chris Lattner 2008-07-26 19:24:43 +00:00
Родитель be89909f3b
Коммит 3cb640bad3
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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) {