[cfe-commits] r41415 - /cfe/trunk/AST/StmtDumper.cpp

Chris Lattner sabre at nondot.org
Sat Aug 25 20:53:30 PDT 2007


Author: lattner
Date: Sat Aug 25 22:53:29 2007
New Revision: 41415

URL: http://llvm.org/viewvc/llvm-project?rev=41415&view=rev
Log:
null pointers don't get an extra newline.

Modified:
    cfe/trunk/AST/StmtDumper.cpp

Modified: cfe/trunk/AST/StmtDumper.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/AST/StmtDumper.cpp?rev=41415&r1=41414&r2=41415&view=diff

==============================================================================
--- cfe/trunk/AST/StmtDumper.cpp (original)
+++ cfe/trunk/AST/StmtDumper.cpp Sat Aug 25 22:53:29 2007
@@ -46,7 +46,7 @@
         Visit(S);
       } else {
         Indent();
-        fprintf(F, "<<<NULL>>>\n");
+        fprintf(F, "<<<NULL>>>");
       }
       --IndentLevel;
     }





More information about the cfe-commits mailing list