From 120505d5e7cfac352d44d84b50626e169a0ba404 Mon Sep 17 00:00:00 2001 From: Devang Patel Date: Tue, 7 Jul 2009 22:09:42 +0000 Subject: [PATCH] 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 --- include/llvm/Support/StandardPasses.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/llvm/Support/StandardPasses.h b/include/llvm/Support/StandardPasses.h index 5c63034a863..3d25c6cf98b 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