diff options
author | Dan Gohman <gohman@apple.com> | 2010-01-22 10:48:28 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-01-22 10:48:28 +0000 |
commit | 12bdbf1ca80a1c7a18020f8fd4482180afcfe6f4 (patch) | |
tree | dc0bc096186f5aa7b735a856a80ee20926b7a0ac /lib | |
parent | 7d1e49c98332ff336bd6a6837855c8cdb1b36e97 (diff) | |
download | external_llvm-12bdbf1ca80a1c7a18020f8fd4482180afcfe6f4.zip external_llvm-12bdbf1ca80a1c7a18020f8fd4482180afcfe6f4.tar.gz external_llvm-12bdbf1ca80a1c7a18020f8fd4482180afcfe6f4.tar.bz2 |
Revert r94066, which was the patch which added a Verifier pass after
LoopStrengthReduce, as it's causing too much trouble (even with the
old LoopStrengthReduce code).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94172 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/CodeGen/LLVMTargetMachine.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/CodeGen/LLVMTargetMachine.cpp b/lib/CodeGen/LLVMTargetMachine.cpp index c761f8d..837e184 100644 --- a/lib/CodeGen/LLVMTargetMachine.cpp +++ b/lib/CodeGen/LLVMTargetMachine.cpp @@ -14,7 +14,6 @@ #include "llvm/Target/TargetMachine.h" #include "llvm/PassManager.h" #include "llvm/Pass.h" -#include "llvm/Analysis/Verifier.h" #include "llvm/Assembly/PrintModulePass.h" #include "llvm/CodeGen/AsmPrinter.h" #include "llvm/CodeGen/Passes.h" @@ -283,9 +282,6 @@ bool LLVMTargetMachine::addCommonCodeGenPasses(PassManagerBase &PM, PM.add(createLoopStrengthReducePass(getTargetLowering())); if (PrintLSR) PM.add(createPrintFunctionPass("\n\n*** Code after LSR ***\n", &dbgs())); -#ifndef NDEBUG - PM.add(createVerifierPass()); -#endif } // Turn exception handling constructs into something the code generators can |