[llvm-commits] [llvm] r74955 - /llvm/trunk/include/llvm/Support/StandardPasses.h

Devang Patel dpatel at apple.com
Tue Jul 7 15:09:42 PDT 2009


Author: dpatel
Date: Tue Jul  7 17:09:42 2009
New Revision: 74955

URL: http://llvm.org/viewvc/llvm-project?rev=74955&view=rev
Log:
Disable loop index split for now and let nightly tester verify its usefulness.

Modified:
    llvm/trunk/include/llvm/Support/StandardPasses.h

Modified: llvm/trunk/include/llvm/Support/StandardPasses.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/StandardPasses.h?rev=74955&r1=74954&r2=74955&view=diff

==============================================================================
--- llvm/trunk/include/llvm/Support/StandardPasses.h (original)
+++ llvm/trunk/include/llvm/Support/StandardPasses.h Tue Jul  7 17:09:42 2009
@@ -129,7 +129,6 @@
       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





More information about the llvm-commits mailing list