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/Analysis/PostDominators.cpp | |
parent | 7a3e750fd24619f60d68f05b2605ecb3196bb6d3 (diff) | |
download | llvm-80e43fa74494ce1adbc727b4b5f1541da2c0c555.zip llvm-80e43fa74494ce1adbc727b4b5f1541da2c0c555.tar.gz llvm-80e43fa74494ce1adbc727b4b5f1541da2c0c555.tar.bz2 |
Restore isCFGOnly property of various analysis passes.
llvm-svn: 48579
Diffstat (limited to 'llvm/lib/Analysis/PostDominators.cpp')
-rw-r--r-- | llvm/lib/Analysis/PostDominators.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Analysis/PostDominators.cpp b/llvm/lib/Analysis/PostDominators.cpp index 8bfa069..ad8e0b1 100644 --- a/llvm/lib/Analysis/PostDominators.cpp +++ b/llvm/lib/Analysis/PostDominators.cpp @@ -26,7 +26,7 @@ using namespace llvm; char PostDominatorTree::ID = 0; char PostDominanceFrontier::ID = 0; static RegisterPass<PostDominatorTree> -F("postdomtree", "Post-Dominator Tree Construction", true, true); +F("postdomtree", "Post-Dominator Tree Construction", false, true); bool PostDominatorTree::runOnFunction(Function &F) { DT->recalculate(F); @@ -38,7 +38,7 @@ bool PostDominatorTree::runOnFunction(Function &F) { //===----------------------------------------------------------------------===// static RegisterPass<PostDominanceFrontier> -H("postdomfrontier", "Post-Dominance Frontier Construction", true, true); +H("postdomfrontier", "Post-Dominance Frontier Construction", false, true); const DominanceFrontier::DomSetType & PostDominanceFrontier::calculate(const PostDominatorTree &DT, |