mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-05 18:28:29 +00:00
Do not require ETForest. Now it is unused by LICM.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37502 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4b90e3a276
commit
468502e41a
@ -76,7 +76,6 @@ namespace {
|
||||
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 @@ namespace {
|
||||
// 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 @@ bool LICM::runOnLoop(Loop *L, LPPassManager &LPM) {
|
||||
AA = &getAnalysis<AliasAnalysis>();
|
||||
DF = &getAnalysis<DominanceFrontier>();
|
||||
DT = &getAnalysis<DominatorTree>();
|
||||
ET = &getAnalysis<ETForest>();
|
||||
|
||||
CurAST = new AliasSetTracker(*AA);
|
||||
// Collect Alias info from subloops
|
||||
|
Loading…
Reference in New Issue
Block a user