aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2009-07-07 22:09:42 +0000
committerDevang Patel <dpatel@apple.com>2009-07-07 22:09:42 +0000
commit247e7e93c14cc48bf3b52f6c1340f52646912b3e (patch)
tree40d7b617aa2e13a1493083de1b5370248fa1b238 /include
parentd04f85fadf52dc23865ab2f7e4b0b23f01c1e224 (diff)
downloadexternal_llvm-247e7e93c14cc48bf3b52f6c1340f52646912b3e.zip
external_llvm-247e7e93c14cc48bf3b52f6c1340f52646912b3e.tar.gz
external_llvm-247e7e93c14cc48bf3b52f6c1340f52646912b3e.tar.bz2
Disable loop index split for now and let nightly tester verify its usefulness.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74955 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Support/StandardPasses.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/llvm/Support/StandardPasses.h b/include/llvm/Support/StandardPasses.h
index 5c63034..3d25c6c 100644
--- a/include/llvm/Support/StandardPasses.h
+++ b/include/llvm/Support/StandardPasses.h
@@ -129,7 +129,6 @@ namespace llvm {
PM->add(createLoopRotatePass()); // Rotate Loop
PM->add(createLICMPass()); // Hoist loop invariants
PM->add(createLoopUnswitchPass(OptimizeSize));
- PM->add(createLoopIndexSplitPass()); // Split loop index
PM->add(createInstructionCombiningPass());
PM->add(createIndVarSimplifyPass()); // Canonicalize indvars
PM->add(createLoopDeletionPass()); // Delete dead loops