From: Devang Patel Date: Fri, 13 Jul 2007 21:53:42 +0000 (+0000) Subject: Disable claims to preserve analysis until open issues are resolved. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=fba36b8cbabcc0a457484bb2babe71a5f570435c;p=oota-llvm.git Disable claims to preserve analysis until open issues are resolved. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@39834 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/LoopRotation.cpp b/lib/Transforms/Scalar/LoopRotation.cpp index 685089e9ab3..d35a8edd3c4 100644 --- a/lib/Transforms/Scalar/LoopRotation.cpp +++ b/lib/Transforms/Scalar/LoopRotation.cpp @@ -62,13 +62,6 @@ namespace { AU.addPreserved(); AU.addRequiredID(LoopSimplifyID); AU.addPreservedID(LoopSimplifyID); - AU.addPreserved(); - // Request DominanceFrontier now, even though Loop Rotate does - // not use it. This allows Pass Manager to schedule Dominance - // Frontier early enough such that one LPPassManager can handle - // loop rotate as well as licm pass. - AU.addRequired(); - AU.addPreserved(); } // Helper functions diff --git a/lib/Transforms/Scalar/LoopUnswitch.cpp b/lib/Transforms/Scalar/LoopUnswitch.cpp index f57c0450083..c433e637c83 100644 --- a/lib/Transforms/Scalar/LoopUnswitch.cpp +++ b/lib/Transforms/Scalar/LoopUnswitch.cpp @@ -83,12 +83,9 @@ namespace { virtual void getAnalysisUsage(AnalysisUsage &AU) const { AU.addRequiredID(LoopSimplifyID); AU.addPreservedID(LoopSimplifyID); - AU.addPreserved(); - AU.addPreserved(); AU.addRequired(); AU.addPreserved(); AU.addRequiredID(LCSSAID); - AU.addPreservedID(LCSSAID); } private: