[PATCH] D64896: Make DT a transitive dependency of LI.
Evgenii Stepanov via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Jul 17 16:32:14 PDT 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL366388: Make DT a transitive dependency of LI. (authored by eugenis, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D64896?vs=210452&id=210454#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D64896/new/
https://reviews.llvm.org/D64896
Files:
llvm/trunk/lib/Analysis/LoopInfo.cpp
Index: llvm/trunk/lib/Analysis/LoopInfo.cpp
===================================================================
--- llvm/trunk/lib/Analysis/LoopInfo.cpp
+++ llvm/trunk/lib/Analysis/LoopInfo.cpp
@@ -1039,7 +1039,7 @@
void LoopInfoWrapperPass::getAnalysisUsage(AnalysisUsage &AU) const {
AU.setPreservesAll();
- AU.addRequired<DominatorTreeWrapperPass>();
+ AU.addRequiredTransitive<DominatorTreeWrapperPass>();
}
void LoopInfoWrapperPass::print(raw_ostream &OS, const Module *) const {
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D64896.210454.patch
Type: text/x-patch
Size: 497 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190717/ac42f8fc/attachment.bin>
More information about the llvm-commits
mailing list