Disable claims to preserve analysis until open issues are resolved.
authorDevang Patel <dpatel@apple.com>
Fri, 13 Jul 2007 21:53:42 +0000 (21:53 +0000)
committerDevang Patel <dpatel@apple.com>
Fri, 13 Jul 2007 21:53:42 +0000 (21:53 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@39834 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/LoopRotation.cpp
lib/Transforms/Scalar/LoopUnswitch.cpp

index 685089e9ab3a015f5e131b4195ac11fec96a2b2c..d35a8edd3c4ded8086e544742a72faef3faf3a72 100644 (file)
@@ -62,13 +62,6 @@ namespace {
       AU.addPreserved<LoopInfo>();
       AU.addRequiredID(LoopSimplifyID);
       AU.addPreservedID(LoopSimplifyID);
-      AU.addPreserved<DominatorTree>();
-      // 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<DominanceFrontier>(); 
-      AU.addPreserved<DominanceFrontier>();
     }
 
     // Helper functions
index f57c0450083d31cb4f843b4aafefcad36ad19f90..c433e637c83da281f9476f0ecc82441f9d212bee 100644 (file)
@@ -83,12 +83,9 @@ namespace {
     virtual void getAnalysisUsage(AnalysisUsage &AU) const {
       AU.addRequiredID(LoopSimplifyID);
       AU.addPreservedID(LoopSimplifyID);
-      AU.addPreserved<DominatorTree>();
-      AU.addPreserved<DominanceFrontier>();
       AU.addRequired<LoopInfo>();
       AU.addPreserved<LoopInfo>();
       AU.addRequiredID(LCSSAID);
-      AU.addPreservedID(LCSSAID);
     }
 
   private: