diff options
author | Chris Lattner <sabre@nondot.org> | 2002-08-08 19:01:30 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-08-08 19:01:30 +0000 |
commit | 5f0eb8da62308126d5b61e3eee5bee75b9dc5194 (patch) | |
tree | bba3aeeee3028f7253ead1fce9c6e2be5167097e /lib/Transforms/Scalar/PiNodeInsertion.cpp | |
parent | dd5b49512976df3225b67f9685642253186cde3d (diff) |
- Cleaned up the interface to AnalysisUsage to take analysis class names
instead of ::ID's.
- Pass::getAnalysis<> now no longer takes an optional argument
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3265 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/PiNodeInsertion.cpp')
-rw-r--r-- | lib/Transforms/Scalar/PiNodeInsertion.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/PiNodeInsertion.cpp b/lib/Transforms/Scalar/PiNodeInsertion.cpp index 399b5fee88..bf0119f2f3 100644 --- a/lib/Transforms/Scalar/PiNodeInsertion.cpp +++ b/lib/Transforms/Scalar/PiNodeInsertion.cpp @@ -44,7 +44,7 @@ namespace { virtual void getAnalysisUsage(AnalysisUsage &AU) const { AU.preservesCFG(); - AU.addRequired(DominatorSet::ID); + AU.addRequired<DominatorSet>(); } // insertPiNodeFor - Insert a Pi node for V in the successors of BB if our |