From 80e43fa74494ce1adbc727b4b5f1541da2c0c555 Mon Sep 17 00:00:00 2001 From: Devang Patel Date: Thu, 20 Mar 2008 02:25:21 +0000 Subject: Restore isCFGOnly property of various analysis passes. llvm-svn: 48579 --- llvm/lib/Analysis/PostDominators.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'llvm/lib/Analysis/PostDominators.cpp') diff --git a/llvm/lib/Analysis/PostDominators.cpp b/llvm/lib/Analysis/PostDominators.cpp index 8bfa0692b9a..ad8e0b17d47 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 -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 -H("postdomfrontier", "Post-Dominance Frontier Construction", true, true); +H("postdomfrontier", "Post-Dominance Frontier Construction", false, true); const DominanceFrontier::DomSetType & PostDominanceFrontier::calculate(const PostDominatorTree &DT, -- cgit v1.2.3