summaryrefslogtreecommitdiffstats
path: root/include/clang/Frontend/ASTConsumers.h
diff options
context:
space:
mode:
authorRichard Smith <richard-llvm@metafoo.co.uk>2013-10-07 20:56:34 +0000
committerRichard Smith <richard-llvm@metafoo.co.uk>2013-10-07 20:56:34 +0000
commit9a7e09fffbad657f775417252bc966098dfb1501 (patch)
treee13a716ec0fb74562f238146e12478bf0e0f7e0e /include/clang/Frontend/ASTConsumers.h
parentaa58f15d824096639ec2c5dcab903cbdfe0e14b4 (diff)
Remove -ast-dump-xml.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@192131 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Frontend/ASTConsumers.h')
-rw-r--r--include/clang/Frontend/ASTConsumers.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/clang/Frontend/ASTConsumers.h b/include/clang/Frontend/ASTConsumers.h
index daaab6198f..366c499b67 100644
--- a/include/clang/Frontend/ASTConsumers.h
+++ b/include/clang/Frontend/ASTConsumers.h
@@ -40,10 +40,6 @@ ASTConsumer *CreateASTDumper(StringRef FilterString, bool DumpLookups = false);
// nodes.
ASTConsumer *CreateASTDeclNodeLister();
-// AST XML-dumper: dumps out the AST to stderr in a very detailed XML
-// format; this is intended for particularly intense debugging.
-ASTConsumer *CreateASTDumperXML(raw_ostream &OS);
-
// Graphical AST viewer: for each function definition, creates a graph of
// the AST and displays it with the graph viewer "dotty". Also outputs
// function declarations to stderr.