aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2008-11-26 05:01:52 +0000
committerDevang Patel <dpatel@apple.com>2008-11-26 05:01:52 +0000
commit59db760c5327128b57f20316667fdcf830b99db2 (patch)
treed0884761d48abe4613f9ffc3b6065b8e706fc3f9
parenta3d764cf77f36eea2748e5f1bb225ed6c475af76 (diff)
Disable -loop-index-split for now.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@60089 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--Driver/Backend.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Driver/Backend.cpp b/Driver/Backend.cpp
index de97991d13..38abef1299 100644
--- a/Driver/Backend.cpp
+++ b/Driver/Backend.cpp
@@ -280,7 +280,7 @@ void BackendConsumer::CreatePasses() {
PM->add(createLoopRotatePass()); // Rotate Loop
PM->add(createLICMPass()); // Hoist loop invariants
PM->add(createLoopUnswitchPass(CompileOpts.OptimizeSize ? true : false));
- PM->add(createLoopIndexSplitPass()); // Split loop index
+// PM->add(createLoopIndexSplitPass()); // Split loop index
PM->add(createInstructionCombiningPass());
PM->add(createIndVarSimplifyPass()); // Canonicalize indvars
PM->add(createLoopDeletionPass()); // Delete dead loops