diff options
author | Dehao Chen <dehao@google.com> | 2016-07-16 22:51:33 +0000 |
---|---|---|
committer | Dehao Chen <dehao@google.com> | 2016-07-16 22:51:33 +0000 |
commit | 1a44452b113ca9c988f636e52064fc64f87791e6 (patch) | |
tree | 952a2e018ec3053fe44778897c3ae6b27fc84ed0 /llvm/lib/CodeGen/MachineFunctionPass.cpp | |
parent | 10fd1ff56ad6ec66f2b8f95a1ae966884e940d20 (diff) | |
download | llvm-1a44452b113ca9c988f636e52064fc64f87791e6.zip llvm-1a44452b113ca9c988f636e52064fc64f87791e6.tar.gz llvm-1a44452b113ca9c988f636e52064fc64f87791e6.tar.bz2 |
[PM] Convert IVUsers analysis to new pass manager.
Summary: Convert IVUsers analysis to new pass manager.
Reviewers: davidxl, silvas
Subscribers: junbuml, sanjoy, llvm-commits, mzolotukhin
Differential Revision: https://reviews.llvm.org/D22434
llvm-svn: 275698
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 16aecb9..228fe17 100644 --- a/llvm/lib/CodeGen/MachineFunctionPass.cpp +++ b/llvm/lib/CodeGen/MachineFunctionPass.cpp @@ -78,7 +78,7 @@ void MachineFunctionPass::getAnalysisUsage(AnalysisUsage &AU) const { AU.addPreserved<DominatorTreeWrapperPass>(); AU.addPreserved<AAResultsWrapperPass>(); AU.addPreserved<GlobalsAAWrapperPass>(); - AU.addPreserved<IVUsers>(); + AU.addPreserved<IVUsersWrapperPass>(); AU.addPreserved<LoopInfoWrapperPass>(); AU.addPreserved<MemoryDependenceWrapperPass>(); AU.addPreserved<ScalarEvolutionWrapperPass>(); |