diff options
author | Andrew Lenharth <andrewl@lenharth.org> | 2006-10-13 17:38:22 +0000 |
---|---|---|
committer | Andrew Lenharth <andrewl@lenharth.org> | 2006-10-13 17:38:22 +0000 |
commit | 966645e6b440e596a390c22d6a809961c6b57a3a (patch) | |
tree | b37307db2828c43ce2be38a87802c2a482b84a7b /llvm/lib/Analysis/DataStructure/TopDownClosure.cpp | |
parent | 5ab3166f74d41cfb4583ef38156425fab4e3af76 (diff) | |
download | bcm5719-llvm-966645e6b440e596a390c22d6a809961c6b57a3a.tar.gz bcm5719-llvm-966645e6b440e596a390c22d6a809961c6b57a3a.zip |
Move some warnings to debug mode.
llvm-svn: 30933
Diffstat (limited to 'llvm/lib/Analysis/DataStructure/TopDownClosure.cpp')
-rw-r--r-- | llvm/lib/Analysis/DataStructure/TopDownClosure.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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. |