From 966645e6b440e596a390c22d6a809961c6b57a3a Mon Sep 17 00:00:00 2001 From: Andrew Lenharth Date: Fri, 13 Oct 2006 17:38:22 +0000 Subject: Move some warnings to debug mode. llvm-svn: 30933 --- llvm/lib/Analysis/DataStructure/TopDownClosure.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'llvm/lib/Analysis/DataStructure/TopDownClosure.cpp') diff --git a/llvm/lib/Analysis/DataStructure/TopDownClosure.cpp b/llvm/lib/Analysis/DataStructure/TopDownClosure.cpp index 9fdaac3c348..55a37dbcd16 100644 --- a/llvm/lib/Analysis/DataStructure/TopDownClosure.cpp +++ b/llvm/lib/Analysis/DataStructure/TopDownClosure.cpp @@ -371,8 +371,8 @@ void TDDataStructures::InlineCallersIntoGraph(DSGraph &DSG) { // If we already have this graph, recycle it. if (IndCallRecI != IndCallMap.end() && IndCallRecI->first == Callees) { - std::cerr << " [TD] *** Reuse of indcall graph for " << Callees.size() - << " callees!\n"; + DEBUG(std::cerr << " [TD] *** Reuse of indcall graph for " << Callees.size() + << " callees!\n"); IndCallGraph = IndCallRecI->second; } else { // Otherwise, create a new DSGraph to represent this. -- cgit v1.2.3