diff options
| author | Richard Trieu <rtrieu@google.com> | 2011-11-03 23:56:23 +0000 |
|---|---|---|
| committer | Richard Trieu <rtrieu@google.com> | 2011-11-03 23:56:23 +0000 |
| commit | 364ee42ee81a544490579bbb7bf1ae36145358eb (patch) | |
| tree | 2ce796a8e1821954b0abffb8dd20e67c737424db | |
| parent | f3879ee6660ad275329401298be15ea58baeb7c4 (diff) | |
| download | bcm5719-llvm-364ee42ee81a544490579bbb7bf1ae36145358eb.tar.gz bcm5719-llvm-364ee42ee81a544490579bbb7bf1ae36145358eb.zip | |
In the AST dump, add a space between the type and value for CharacterLiteral.
llvm-svn: 143667
| -rw-r--r-- | clang/lib/AST/StmtDumper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/AST/StmtDumper.cpp b/clang/lib/AST/StmtDumper.cpp index 2968739c227..54e62fe35b2 100644 --- a/clang/lib/AST/StmtDumper.cpp +++ b/clang/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) { |

