summaryrefslogtreecommitdiffstats
path: root/lib/AST/StmtDumper.cpp
diff options
context:
space:
mode:
authorRichard Trieu <rtrieu@google.com>2011-11-03 23:56:23 +0000
committerRichard Trieu <rtrieu@google.com>2011-11-03 23:56:23 +0000
commit49cf8847ef4d9caebdd162d2a5d7d055333d8b5c (patch)
treeb2a5dffe17c9ba785611de4df7c55033e5cc2910 /lib/AST/StmtDumper.cpp
parentb49d5a6606ec9b912f74279c935934c4ecb39dfa (diff)
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
Diffstat (limited to 'lib/AST/StmtDumper.cpp')
-rw-r--r--lib/AST/StmtDumper.cpp2
1 files changed, 1 insertions, 1 deletions
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) {