diff options
author | Hongbin Zheng <etherzhhb@gmail.com> | 2016-02-25 16:45:46 +0000 |
---|---|---|
committer | Hongbin Zheng <etherzhhb@gmail.com> | 2016-02-25 16:45:46 +0000 |
commit | ad782ce3f7e282a818ad062ba3c18c96b7e742b5 (patch) | |
tree | 9c973fdfc739cf3124293c40fabe15d53a272e82 /llvm/lib/CodeGen/MachineFunctionPass.cpp | |
parent | 921fabf34b8c240d7552cdb3b7809d7c050a75db (diff) | |
download | bcm5719-llvm-ad782ce3f7e282a818ad062ba3c18c96b7e742b5.tar.gz bcm5719-llvm-ad782ce3f7e282a818ad062ba3c18c96b7e742b5.zip |
Revert "Introduce DominanceFrontierAnalysis to the new PassManager to compute DominanceFrontier. NFC"
This reverts commit 109c38b2226a87b0be73fa7a0a8c1a81df20aeb2.
llvm-svn: 261890
Diffstat (limited to 'llvm/lib/CodeGen/MachineFunctionPass.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineFunctionPass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineFunctionPass.cpp b/llvm/lib/CodeGen/MachineFunctionPass.cpp index 5ca41bec3c3..05463fc6a1e 100644 --- a/llvm/lib/CodeGen/MachineFunctionPass.cpp +++ b/llvm/lib/CodeGen/MachineFunctionPass.cpp @@ -53,7 +53,7 @@ void MachineFunctionPass::getAnalysisUsage(AnalysisUsage &AU) const { // because CodeGen overloads that to mean preserving the MachineBasicBlock // CFG in addition to the LLVM IR CFG. AU.addPreserved<BasicAAWrapperPass>(); - AU.addPreserved<DominanceFrontierWrapperPass>(); + AU.addPreserved<DominanceFrontier>(); AU.addPreserved<DominatorTreeWrapperPass>(); AU.addPreserved<AAResultsWrapperPass>(); AU.addPreserved<GlobalsAAWrapperPass>(); |