Force postdom to be linked into opt and bugpoint, even though it is no longer used...
[oota-llvm.git] / include / llvm / Analysis / PostDominators.h
index 51b3e807d8b41937000ade48aa7339978da77b37..b99fafcfc9f26ec4d980427e5d7f4a7016fdcbbc 100644 (file)
@@ -62,6 +62,7 @@ struct PostDominatorTree : public FunctionPass {
   }
 };
 
+FunctionPass* createPostDomTree();
 
 /// PostDominanceFrontier Class - Concrete subclass of DominanceFrontier that is
 /// used to compute the a post-dominance frontier.
@@ -90,6 +91,8 @@ private:
                               const DomTreeNode *Node);
 };
 
+FunctionPass* createPostDomFrontier();
+
 } // End llvm namespace
 
 #endif