From: Richard Trieu Date: Thu, 3 Nov 2011 23:56:23 +0000 (+0000) Subject: In the AST dump, add a space between the type and value for CharacterLiteral. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=49cf8847ef4d9caebdd162d2a5d7d055333d8b5c;p=clang 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 --- 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) {