From: Devang Patel Date: Wed, 26 Nov 2008 05:01:52 +0000 (+0000) Subject: Disable -loop-index-split for now. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=59db760c5327128b57f20316667fdcf830b99db2;p=clang Disable -loop-index-split for now. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@60089 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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