diff options
author | Devang Patel <dpatel@apple.com> | 2008-03-20 02:25:21 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2008-03-20 02:25:21 +0000 |
commit | 80e43fa74494ce1adbc727b4b5f1541da2c0c555 (patch) | |
tree | 1421872a29789682d9349a16d4f4a0790975d0bb /llvm/lib/VMCore/Dominators.cpp | |
parent | 7a3e750fd24619f60d68f05b2605ecb3196bb6d3 (diff) | |
download | bcm5719-llvm-80e43fa74494ce1adbc727b4b5f1541da2c0c555.tar.gz bcm5719-llvm-80e43fa74494ce1adbc727b4b5f1541da2c0c555.zip |
Restore isCFGOnly property of various analysis passes.
llvm-svn: 48579
Diffstat (limited to 'llvm/lib/VMCore/Dominators.cpp')
-rw-r--r-- | llvm/lib/VMCore/Dominators.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/VMCore/Dominators.cpp b/llvm/lib/VMCore/Dominators.cpp index 28f772f93f6..1e88b486070 100644 --- a/llvm/lib/VMCore/Dominators.cpp +++ b/llvm/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. |