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/CodeGen/CodeGenAction.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/CodeGen/CodeGenAction.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenAction.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/clang/lib/CodeGen/CodeGenAction.cpp b/clang/lib/CodeGen/CodeGenAction.cpp index 3d21ef9af3d..2ddcc3e5dc0 100644 --- a/clang/lib/CodeGen/CodeGenAction.cpp +++ b/clang/lib/CodeGen/CodeGenAction.cpp @@ -301,7 +301,6 @@ static raw_ostream *GetOutputStream(CompilerInstance &CI, case Backend_EmitLL: return CI.createDefaultOutputFile(false, InFile, "ll"); case Backend_EmitBC: - case Backend_EmitBCVerify: return CI.createDefaultOutputFile(true, InFile, "bc"); case Backend_EmitNothing: return 0; @@ -413,9 +412,6 @@ EmitAssemblyAction::EmitAssemblyAction(llvm::LLVMContext *_VMContext) EmitBCAction::EmitBCAction(llvm::LLVMContext *_VMContext) : CodeGenAction(Backend_EmitBC, _VMContext) {} -EmitBCVerifyAction::EmitBCVerifyAction(llvm::LLVMContext *_VMContext) - : CodeGenAction(Backend_EmitBCVerify, _VMContext) {} - EmitLLVMAction::EmitLLVMAction(llvm::LLVMContext *_VMContext) : CodeGenAction(Backend_EmitLL, _VMContext) {} |