diff options
author | Chad Rosier <mcrosier@apple.com> | 2011-12-14 00:29:23 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2011-12-14 00:29:23 +0000 |
commit | 1332d9b26a7dedc8570e4a2eee542d43e325bc8f (patch) | |
tree | d18ced74dbb458126a26e6e47478fbf9c11c7ff7 /clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp | |
parent | 9bd5208965839495dc463203c23330d599e541d1 (diff) | |
download | bcm5719-llvm-1332d9b26a7dedc8570e4a2eee542d43e325bc8f.tar.gz bcm5719-llvm-1332d9b26a7dedc8570e4a2eee542d43e325bc8f.zip |
Per discussion on the list, remove BitcodeVerify pass to reimplement as a free function.
llvm-svn: 146530
Diffstat (limited to 'clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp')
-rw-r--r-- | clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp b/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp index 52c5624c164..fec12e3b11d 100644 --- a/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp +++ b/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp @@ -43,7 +43,6 @@ static FrontendAction *CreateFrontendBaseAction(CompilerInstance &CI) { case DumpTokens: return new DumpTokensAction(); case EmitAssembly: return new EmitAssemblyAction(); case EmitBC: return new EmitBCAction(); - case EmitBCVerify: return new EmitBCVerifyAction(); case EmitHTML: return new HTMLPrintAction(); case EmitLLVM: return new EmitLLVMAction(); case EmitLLVMOnly: return new EmitLLVMOnlyAction(); |