[llvm-commits] [llvm] r101038 - /llvm/trunk/lib/Analysis/PostDominators.cpp
Tobias Grosser
grosser at fim.uni-passau.de
Mon Apr 12 08:32:55 PDT 2010
Author: grosser
Date: Mon Apr 12 10:32:55 2010
New Revision: 101038
URL: http://llvm.org/viewvc/llvm-project?rev=101038&view=rev
Log:
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.
Modified:
llvm/trunk/lib/Analysis/PostDominators.cpp
Modified: llvm/trunk/lib/Analysis/PostDominators.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Analysis/PostDominators.cpp?rev=101038&r1=101037&r2=101038&view=diff
==============================================================================
--- llvm/trunk/lib/Analysis/PostDominators.cpp (original)
+++ llvm/trunk/lib/Analysis/PostDominators.cpp Mon Apr 12 10:32:55 2010
@@ -33,7 +33,6 @@
bool PostDominatorTree::runOnFunction(Function &F) {
DT->recalculate(F);
- DEBUG(DT->print(dbgs()));
return false;
}
More information about the llvm-commits
mailing list