diff options
author | Tobias Grosser <grosser@fim.uni-passau.de> | 2010-04-12 15:32:55 +0000 |
---|---|---|
committer | Tobias Grosser <grosser@fim.uni-passau.de> | 2010-04-12 15:32:55 +0000 |
commit | 63d3659a44e14525e729ef52e6f993d3c306ae2f (patch) | |
tree | f07558b7b9e61c12d20a53e80764b06479ec1c0f /lib/Analysis/PostDominators.cpp | |
parent | e7e08c39de6ab481678b37c077514ac2780292e5 (diff) |
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.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Analysis/PostDominators.cpp b/lib/Analysis/PostDominators.cpp index c38e0503f9..f0f3a05db8 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; } |