From 3a723ab344d9835506ed2b52a2ccd75078670fc7 Mon Sep 17 00:00:00 2001 From: Tobias Grosser Date: Sun, 9 Jan 2011 16:00:09 +0000 Subject: [PATCH] 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 --- include/llvm/Analysis/Dominators.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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";