]> granicus.if.org Git - clang/commitdiff
null pointers don't get an extra newline.
authorChris Lattner <sabre@nondot.org>
Sun, 26 Aug 2007 03:53:29 +0000 (03:53 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 26 Aug 2007 03:53:29 +0000 (03:53 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41415 91177308-0d34-0410-b5e6-96231b3b80d8

AST/StmtDumper.cpp

index 0ac7a19ddadd84974e1c01adef0b5213ef83a4f1..fc58184a1dbf4ffd02090fba80cd77c968dee16e 100644 (file)
@@ -46,7 +46,7 @@ namespace  {
         Visit(S);
       } else {
         Indent();
-        fprintf(F, "<<<NULL>>>\n");
+        fprintf(F, "<<<NULL>>>");
       }
       --IndentLevel;
     }