diff options
author | Devang Patel <dpatel@apple.com> | 2009-07-07 22:09:42 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2009-07-07 22:09:42 +0000 |
commit | 120505d5e7cfac352d44d84b50626e169a0ba404 (patch) | |
tree | 40d7b617aa2e13a1493083de1b5370248fa1b238 | |
parent | 33d6a3451bc8e0c6b7c4137d7b29596102a24627 (diff) |
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
-rw-r--r-- | include/llvm/Support/StandardPasses.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/llvm/Support/StandardPasses.h b/include/llvm/Support/StandardPasses.h index 5c63034a86..3d25c6cf98 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 |