forked from OSchip/llvm-project
Add preservation of SlotIndexes to PHIElimination.
llvm-svn: 175596
This commit is contained in:
parent
532aff8cd0
commit
37ca2e81d8
|
@ -116,6 +116,7 @@ INITIALIZE_PASS_END(PHIElimination, "phi-node-elimination",
|
|||
|
||||
void PHIElimination::getAnalysisUsage(AnalysisUsage &AU) const {
|
||||
AU.addPreserved<LiveVariables>();
|
||||
AU.addPreserved<SlotIndexes>();
|
||||
AU.addPreserved<LiveIntervals>();
|
||||
AU.addPreserved<MachineDominatorTree>();
|
||||
AU.addPreserved<MachineLoopInfo>();
|
||||
|
|
Loading…
Reference in New Issue