[llvm-commits] CVS: llvm/lib/Transforms/Scalar/LICM.cpp
Devang Patel
dpatel at apple.com
Thu Jun 7 15:21:36 PDT 2007
Changes in directory llvm/lib/Transforms/Scalar:
LICM.cpp updated: 1.106 -> 1.107
---
Log message:
Do not require ETForest. Now it is unused by LICM.
---
Diffs of the changes: (+0 -3)
LICM.cpp | 3 ---
1 files changed, 3 deletions(-)
Index: llvm/lib/Transforms/Scalar/LICM.cpp
diff -u llvm/lib/Transforms/Scalar/LICM.cpp:1.106 llvm/lib/Transforms/Scalar/LICM.cpp:1.107
--- llvm/lib/Transforms/Scalar/LICM.cpp:1.106 Thu Jun 7 16:57:03 2007
+++ llvm/lib/Transforms/Scalar/LICM.cpp Thu Jun 7 17:21:15 2007
@@ -76,7 +76,6 @@
AU.addRequiredID(LoopSimplifyID);
AU.addRequired<LoopInfo>();
AU.addRequired<DominatorTree>();
- AU.addRequired<ETForest>();
AU.addRequired<DominanceFrontier>(); // For scalar promotion (mem2reg)
AU.addRequired<AliasAnalysis>();
}
@@ -90,7 +89,6 @@
// Various analyses that we use...
AliasAnalysis *AA; // Current AliasAnalysis information
LoopInfo *LI; // Current LoopInfo
- ETForest *ET; // ETForest for the current loop..
DominatorTree *DT; // Dominator Tree for the current Loop...
DominanceFrontier *DF; // Current Dominance Frontier
@@ -220,7 +218,6 @@
AA = &getAnalysis<AliasAnalysis>();
DF = &getAnalysis<DominanceFrontier>();
DT = &getAnalysis<DominatorTree>();
- ET = &getAnalysis<ETForest>();
CurAST = new AliasSetTracker(*AA);
// Collect Alias info from subloops
More information about the llvm-commits
mailing list