From 49cf8847ef4d9caebdd162d2a5d7d055333d8b5c Mon Sep 17 00:00:00 2001 From: Richard Trieu Date: Thu, 3 Nov 2011 23:56:23 +0000 Subject: [PATCH] In the AST dump, add a space between the type and value for CharacterLiteral. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@143667 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/AST/StmtDumper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/AST/StmtDumper.cpp b/lib/AST/StmtDumper.cpp index 2968739c22..54e62fe35b 100644 --- a/lib/AST/StmtDumper.cpp +++ b/lib/AST/StmtDumper.cpp @@ -425,7 +425,7 @@ void StmtDumper::VisitPredefinedExpr(PredefinedExpr *Node) { void StmtDumper::VisitCharacterLiteral(CharacterLiteral *Node) { DumpExpr(Node); - OS << Node->getValue(); + OS << " " << Node->getValue(); } void StmtDumper::VisitIntegerLiteral(IntegerLiteral *Node) { -- 2.50.1