commit | 7ca9779e6ebedc00debf12eba2968cf3b2e413cc | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Sun Mar 29 16:04:50 2009 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Sun Mar 29 16:04:50 2009 +0000 |
tree | 23a03951f8ec2aa6968fc5da05760446433c6dfc | |
parent | dfc303325f3db63d9596883379f8c7296d5ea716 [diff] [blame] |
simplify git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68000 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/AST/StmtDumper.cpp b/lib/AST/StmtDumper.cpp index 358098e..fa3b40c 100644 --- a/lib/AST/StmtDumper.cpp +++ b/lib/AST/StmtDumper.cpp
@@ -271,7 +271,7 @@ Indent(); fprintf(F, "%p ", (void*) D); DumpDeclarator(D); - if (D->getNextDeclarator()) + if (DI+1 != DE) fprintf(F,"\n"); --IndentLevel; }