Move this method out of the generic dominators calculation code
authorChris Lattner <sabre@nondot.org>
Sun, 7 Dec 2003 00:35:19 +0000 (00:35 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 7 Dec 2003 00:35:19 +0000 (00:35 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10298 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Analysis/PostDominators.h

index c8eb439b41ae627fa233ff9822d9606789290cb8..f092d159c1a13faeb83aa8d4ac5190cb269d0a86 100644 (file)
@@ -59,6 +59,8 @@ struct ImmediatePostDominators : public ImmediateDominatorsBase {
     AU.setPreservesAll();
     AU.addRequired<PostDominatorSet>();
   }
+private:
+  void calcIDoms(const DominatorSetBase &DS);
 };