From 8e45293b6d4992040a7f6280d50fee2ae3eb821f Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Tue, 8 Oct 2013 02:19:45 +0000 Subject: [PATCH] Fix build break: clang no longer supports -ast-dump-xml. llvm-svn: 192155 --- lldb/source/Expression/ClangExpressionParser.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/lldb/source/Expression/ClangExpressionParser.cpp b/lldb/source/Expression/ClangExpressionParser.cpp index e2494df..f2a1613 100644 --- a/lldb/source/Expression/ClangExpressionParser.cpp +++ b/lldb/source/Expression/ClangExpressionParser.cpp @@ -115,7 +115,6 @@ static FrontendAction *CreateFrontendBaseAction(CompilerInstance &CI) { case ASTDump: return new ASTDumpAction(); case ASTPrint: return new ASTPrintAction(); - case ASTDumpXML: return new ASTDumpXMLAction(); case ASTView: return new ASTViewAction(); case DumpRawTokens: return new DumpRawTokensAction(); case DumpTokens: return new DumpTokensAction(); -- 2.7.4