diff options
author | Alexander Kornienko <alexfh@google.com> | 2012-12-20 02:09:13 +0000 |
---|---|---|
committer | Alexander Kornienko <alexfh@google.com> | 2012-12-20 02:09:13 +0000 |
commit | d538ed9b2a617239d5bd56357663de62f6f9224c (patch) | |
tree | 4d89b1886df14de8f283d0916da56ee1c0b2c3c0 /lib/AST/StmtPrinter.cpp | |
parent | bf53dfac8195835028bd6347433f7dbebcc29fc1 (diff) |
Implement AST dumper for Decls.
http://llvm-reviews.chandlerc.com/D52
Patch by Philip Craig!
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@170634 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/StmtPrinter.cpp')
-rw-r--r-- | lib/AST/StmtPrinter.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/AST/StmtPrinter.cpp b/lib/AST/StmtPrinter.cpp index 0c741495b9..f021c71dca 100644 --- a/lib/AST/StmtPrinter.cpp +++ b/lib/AST/StmtPrinter.cpp @@ -1875,11 +1875,6 @@ void Stmt::printPretty(raw_ostream &OS, return; } - if (Policy.DumpSourceManager) { - dump(OS, *Policy.DumpSourceManager); - return; - } - StmtPrinter P(OS, Helper, Policy, Indentation); P.Visit(const_cast<Stmt*>(this)); } |