more updates and random notes, including changes up through Week-of-Mon-20080324.
[oota-llvm.git] / lib / VMCore / Dominators.cpp
index 1e88b486070905f5e218be400df29bb407f13c5e..e9eca4eee4a212fea914099840399273590414ad 100644 (file)
@@ -54,11 +54,10 @@ TEMPLATE_INSTANTIATION(class DominatorTreeBase<BasicBlock>);
 
 char DominatorTree::ID = 0;
 static RegisterPass<DominatorTree>
-E("domtree", "Dominator Tree Construction", false, true);
+E("domtree", "Dominator Tree Construction", true, true);
 
 bool DominatorTree::runOnFunction(Function &F) {
   DT->recalculate(F);
-  
   return false;
 }
 
@@ -68,7 +67,7 @@ bool DominatorTree::runOnFunction(Function &F) {
 
 char DominanceFrontier::ID = 0;
 static RegisterPass<DominanceFrontier>
-G("domfrontier", "Dominance Frontier Construction", false, true);
+G("domfrontier", "Dominance Frontier Construction", true, true);
 
 // NewBB is split and now it has one successor. Update dominace frontier to
 // reflect this change.