Add a note about a potential PIC optimization.
[oota-llvm.git] / include / llvm / Analysis / PostDominators.h
index 27c2b26c8c2d34aeecdf23dbbc58f33427c4458c..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,9 +91,8 @@ private:
                               const DomTreeNode *Node);
 };
 
-} // End llvm namespace
+FunctionPass* createPostDomFrontier();
 
-// Make sure that any clients of this file link in PostDominators.cpp
-FORCE_DEFINING_FILE_TO_BE_LINKED(PostDominanceFrontier)
+} // End llvm namespace
 
 #endif