diff options
Diffstat (limited to 'lib/VMCore/Dominators.cpp')
-rw-r--r-- | lib/VMCore/Dominators.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/VMCore/Dominators.cpp b/lib/VMCore/Dominators.cpp index 28f772f93f..1e88b48607 100644 --- a/lib/VMCore/Dominators.cpp +++ b/lib/VMCore/Dominators.cpp @@ -54,7 +54,7 @@ TEMPLATE_INSTANTIATION(class DominatorTreeBase<BasicBlock>); char DominatorTree::ID = 0; static RegisterPass<DominatorTree> -E("domtree", "Dominator Tree Construction", true, true); +E("domtree", "Dominator Tree Construction", false, true); bool DominatorTree::runOnFunction(Function &F) { DT->recalculate(F); @@ -68,7 +68,7 @@ bool DominatorTree::runOnFunction(Function &F) { char DominanceFrontier::ID = 0; static RegisterPass<DominanceFrontier> -G("domfrontier", "Dominance Frontier Construction", true, true); +G("domfrontier", "Dominance Frontier Construction", false, true); // NewBB is split and now it has one successor. Update dominace frontier to // reflect this change. |