Remove unneeded debug in PostDominator runOnFunction()
authorTobias Grosser <grosser@fim.uni-passau.de>
Mon, 12 Apr 2010 15:32:55 +0000 (15:32 +0000)
committerTobias Grosser <grosser@fim.uni-passau.de>
Mon, 12 Apr 2010 15:32:55 +0000 (15:32 +0000)
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

lib/Analysis/PostDominators.cpp

index c38e0503f931d25bc9ae725f6a567f6ad2c214ee..f0f3a05db8a0e789bab6c78b65abe34ccd45f0bf 100644 (file)
@@ -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;
 }