diff options
author | Chris Lattner <sabre@nondot.org> | 2002-07-29 21:03:33 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-07-29 21:03:33 +0000 |
commit | eb702350f7ac9c8910755fba44a98bc9a09beb4f (patch) | |
tree | 56f9670aa484a8be5743690de6560cbe2240a249 /lib/Analysis/LoopInfo.cpp | |
parent | 44050fb25a37a72ba74da9b0c8b41973325a7995 (diff) |
* Eliminate the Provided set. All Passes now finally just automatically
provide themselves.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3124 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/LoopInfo.cpp')
-rw-r--r-- | lib/Analysis/LoopInfo.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Analysis/LoopInfo.cpp b/lib/Analysis/LoopInfo.cpp index ff5e2fa9dc..8b3a434822 100644 --- a/lib/Analysis/LoopInfo.cpp +++ b/lib/Analysis/LoopInfo.cpp @@ -73,7 +73,6 @@ void LoopInfo::Calculate(const DominatorSet &DS) { void LoopInfo::getAnalysisUsage(AnalysisUsage &AU) const { AU.setPreservesAll(); AU.addRequired(DominatorSet::ID); - AU.addProvided(ID); } void LoopInfo::print(std::ostream &OS) const { |