Now with fewer extraneous semicolons!
[oota-llvm.git] / lib / Analysis / PostDominators.cpp
index cbe8d1867e4f1d3e91a4401e00aadda75b23128f..c745791c8d63d3b44d5c1c73458d07b4827567eb 100644 (file)
@@ -29,7 +29,7 @@ using namespace llvm;
 char PostDominatorTree::ID = 0;
 char PostDominanceFrontier::ID = 0;
 INITIALIZE_PASS(PostDominatorTree, "postdomtree",
-                "Post-Dominator Tree Construction", true, true);
+                "Post-Dominator Tree Construction", true, true)
 
 bool PostDominatorTree::runOnFunction(Function &F) {
   DT->recalculate(F);
@@ -54,7 +54,7 @@ FunctionPass* llvm::createPostDomTree() {
 //===----------------------------------------------------------------------===//
 
 INITIALIZE_PASS(PostDominanceFrontier, "postdomfrontier",
-                "Post-Dominance Frontier Construction", true, true);
+                "Post-Dominance Frontier Construction", true, true)
 
 const DominanceFrontier::DomSetType &
 PostDominanceFrontier::calculate(const PostDominatorTree &DT,