80 column fixes.
[oota-llvm.git] / lib / Analysis / PostDominators.cpp
index c72b140a6224fec085d184253846e1dd8bd88d7f..4853c2ac87b7998cabca44b0305eead84dc5991a 100644 (file)
@@ -42,6 +42,10 @@ PostDominatorTree::~PostDominatorTree()
   delete DT;
 }
 
+FunctionPass* llvm::createPostDomTree() {
+  return new PostDominatorTree();
+}
+
 //===----------------------------------------------------------------------===//
 //  PostDominanceFrontier Implementation
 //===----------------------------------------------------------------------===//
@@ -85,5 +89,6 @@ PostDominanceFrontier::calculate(const PostDominatorTree &DT,
   return S;
 }
 
-// Ensure that this .cpp file gets linked when PostDominators.h is used.
-DEFINING_FILE_FOR(PostDominanceFrontier)
+FunctionPass* llvm::createPostDomFrontier() {
+  return new PostDominanceFrontier();
+}