From: Owen Anderson Date: Fri, 25 Aug 2006 03:45:57 +0000 (+0000) Subject: Revert my previous patch. Since there are some major changes that went in today, X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=b397d81f0339614ff73908ee9ee49bdead1643ad;p=oota-llvm.git Revert my previous patch. Since there are some major changes that went in today, I'm going to wait to put this in HEAD until tomorrow, so as not to clutter the nightly tester. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29868 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/IndVarSimplify.cpp b/lib/Transforms/Scalar/IndVarSimplify.cpp index cf2daa1ddc1..efa587b221e 100644 --- a/lib/Transforms/Scalar/IndVarSimplify.cpp +++ b/lib/Transforms/Scalar/IndVarSimplify.cpp @@ -79,7 +79,6 @@ namespace { AU.addRequired(); AU.addRequired(); AU.addPreservedID(LoopSimplifyID); - AU.addPreservedID(LCSSAID); AU.setPreservesCFG(); } private: @@ -571,6 +570,4 @@ void IndVarSimplify::runOnLoop(Loop *L) { #endif DeleteTriviallyDeadInstructions(DeadInsts); - - assert(L->isLCSSAForm()); }