From 4a70adba92ff0e26af87360557ee2e9a6ff529d3 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 26 Aug 2007 03:53:29 +0000 Subject: [PATCH] null pointers don't get an extra newline. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41415 91177308-0d34-0410-b5e6-96231b3b80d8 --- AST/StmtDumper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AST/StmtDumper.cpp b/AST/StmtDumper.cpp index 0ac7a19dda..fc58184a1d 100644 --- a/AST/StmtDumper.cpp +++ b/AST/StmtDumper.cpp @@ -46,7 +46,7 @@ namespace { Visit(S); } else { Indent(); - fprintf(F, "<<>>\n"); + fprintf(F, "<<>>"); } --IndentLevel; } -- 2.50.1