summaryrefslogtreecommitdiffstats
path: root/llvm
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-01-22 10:48:28 +0000
committerDan Gohman <gohman@apple.com>2010-01-22 10:48:28 +0000
commit6f08fa70c185d497a40dcab5ac14d121b49d608a (patch)
tree042cb5f2662336d7ba9e34f5a99b5aa54ea5ecfb /llvm
parentcfa5ebc3362f78494d66e88e1be109de4ff84035 (diff)
downloadbcm5719-llvm-6f08fa70c185d497a40dcab5ac14d121b49d608a.tar.gz
bcm5719-llvm-6f08fa70c185d497a40dcab5ac14d121b49d608a.zip
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). llvm-svn: 94172
Diffstat (limited to 'llvm')
-rw-r--r--llvm/lib/CodeGen/LLVMTargetMachine.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/CodeGen/LLVMTargetMachine.cpp b/llvm/lib/CodeGen/LLVMTargetMachine.cpp
index c761f8dd927..837e1848aa5 100644
--- a/llvm/lib/CodeGen/LLVMTargetMachine.cpp
+++ b/llvm/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
OpenPOWER on IntegriCloud