From: Tobias Grosser Date: Sun, 9 Jan 2011 16:00:09 +0000 (+0000) Subject: DominatorTree->print() now prints the status of the DFSNumbers correctly X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3a723ab344d9835506ed2b52a2ccd75078670fc7;p=oota-llvm.git DominatorTree->print() now prints the status of the DFSNumbers correctly git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123120 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Analysis/Dominators.h b/include/llvm/Analysis/Dominators.h index 3515e35b1ff..5e86e2b67a0 100644 --- a/include/llvm/Analysis/Dominators.h +++ b/include/llvm/Analysis/Dominators.h @@ -555,7 +555,7 @@ public: o << "Inorder PostDominator Tree: "; else o << "Inorder Dominator Tree: "; - if (this->DFSInfoValid) + if (!this->DFSInfoValid) o << "DFSNumbers invalid: " << SlowQueries << " slow queries."; o << "\n";