diff options
author | Hongbin Zheng <etherzhhb@gmail.com> | 2016-02-25 17:54:07 +0000 |
---|---|---|
committer | Hongbin Zheng <etherzhhb@gmail.com> | 2016-02-25 17:54:07 +0000 |
commit | 3f97840721817d36d5bb5348a628b1d20c8fc4c3 (patch) | |
tree | 44773d0ab6cf720c7d715596e342231c26ad8031 /llvm/lib/CodeGen | |
parent | 5a8453d576319f5bca9dc3788e1ae29694e55911 (diff) | |
download | bcm5719-llvm-3f97840721817d36d5bb5348a628b1d20c8fc4c3.tar.gz bcm5719-llvm-3f97840721817d36d5bb5348a628b1d20c8fc4c3.zip |
Introduce analysis pass to compute PostDominators in the new pass manager. NFC
Differential Revision: http://reviews.llvm.org/D17537
llvm-svn: 261902
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/MachineRegionInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineRegionInfo.cpp b/llvm/lib/CodeGen/MachineRegionInfo.cpp index 7d61792ff68..0f7ebb3da83 100644 --- a/llvm/lib/CodeGen/MachineRegionInfo.cpp +++ b/llvm/lib/CodeGen/MachineRegionInfo.cpp @@ -104,7 +104,7 @@ void MachineRegionInfoPass::verifyAnalysis() const { void MachineRegionInfoPass::getAnalysisUsage(AnalysisUsage &AU) const { AU.setPreservesAll(); AU.addRequiredTransitive<DominatorTreeWrapperPass>(); - AU.addRequired<PostDominatorTree>(); + AU.addRequired<PostDominatorTreeWrapperPass>(); AU.addRequired<DominanceFrontier>(); } |