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 | 9f6d068b29ea2f6276f1105c71d9e768201f2b88 (patch) | |
tree | 7f2d4f4d39be5b2577bfb9d60a6a60ac8ecdff3b /lib/CodeGen/CodeGenAction.cpp | |
parent | a6dc7eff27a8c59bee42809270971931b811dd44 (diff) |
Per discussion on the list, remove BitcodeVerify pass to reimplement as a free function.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@146530 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenAction.cpp')
-rw-r--r-- | lib/CodeGen/CodeGenAction.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/CodeGen/CodeGenAction.cpp b/lib/CodeGen/CodeGenAction.cpp index 3d21ef9af3..2ddcc3e5dc 100644 --- a/lib/CodeGen/CodeGenAction.cpp +++ b/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) {} |