From f0ed55d1eeb481ae715060dac4ee6acded06db17 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 8 Aug 2002 19:01:30 +0000 Subject: - Cleaned up the interface to AnalysisUsage to take analysis class names instead of ::ID's. - Pass::getAnalysis<> now no longer takes an optional argument llvm-svn: 3265 --- llvm/lib/Transforms/Scalar/PiNodeInsertion.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/Transforms/Scalar/PiNodeInsertion.cpp') diff --git a/llvm/lib/Transforms/Scalar/PiNodeInsertion.cpp b/llvm/lib/Transforms/Scalar/PiNodeInsertion.cpp index 399b5fee88c..bf0119f2f3c 100644 --- a/llvm/lib/Transforms/Scalar/PiNodeInsertion.cpp +++ b/llvm/lib/Transforms/Scalar/PiNodeInsertion.cpp @@ -44,7 +44,7 @@ namespace { virtual void getAnalysisUsage(AnalysisUsage &AU) const { AU.preservesCFG(); - AU.addRequired(DominatorSet::ID); + AU.addRequired(); } // insertPiNodeFor - Insert a Pi node for V in the successors of BB if our -- cgit v1.2.3