aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Analysis/PostDominators.cpp
diff options
context:
space:
mode:
authorTobias Grosser <grosser@fim.uni-passau.de>2010-04-12 15:32:55 +0000
committerTobias Grosser <grosser@fim.uni-passau.de>2010-04-12 15:32:55 +0000
commit63d3659a44e14525e729ef52e6f993d3c306ae2f (patch)
treef07558b7b9e61c12d20a53e80764b06479ec1c0f /lib/Analysis/PostDominators.cpp
parente7e08c39de6ab481678b37c077514ac2780292e5 (diff)
downloadexternal_llvm-63d3659a44e14525e729ef52e6f993d3c306ae2f.zip
external_llvm-63d3659a44e14525e729ef52e6f993d3c306ae2f.tar.gz
external_llvm-63d3659a44e14525e729ef52e6f993d3c306ae2f.tar.bz2
Remove unneeded debug in PostDominator runOnFunction()
The information is already available with "opt -analyze". The DominatorTree does also not have this in its runOnFunction. So they behave now more consistent. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101038 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/PostDominators.cpp')
-rw-r--r--lib/Analysis/PostDominators.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Analysis/PostDominators.cpp b/lib/Analysis/PostDominators.cpp
index c38e050..f0f3a05 100644
--- a/lib/Analysis/PostDominators.cpp
+++ b/lib/Analysis/PostDominators.cpp
@@ -33,7 +33,6 @@ F("postdomtree", "Post-Dominator Tree Construction", true, true);
bool PostDominatorTree::runOnFunction(Function &F) {
DT->recalculate(F);
- DEBUG(DT->print(dbgs()));
return false;
}