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 | 4885db6f52cae121f476f0725507ea287f8b7684 (patch) | |
tree | c1b1189e3d4f213496e1dd463172a366e8c70cc1 /llvm | |
parent | 6a5eef40674770a48bdb39d8a942b246f7ccace7 (diff) | |
download | bcm5719-llvm-4885db6f52cae121f476f0725507ea287f8b7684.tar.gz bcm5719-llvm-4885db6f52cae121f476f0725507ea287f8b7684.zip |
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.
llvm-svn: 101038
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/lib/Analysis/PostDominators.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/PostDominators.cpp b/llvm/lib/Analysis/PostDominators.cpp index c38e0503f93..f0f3a05db8a 100644 --- a/llvm/lib/Analysis/PostDominators.cpp +++ b/llvm/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; } |