[llvm-commits] [poolalloc] r57580 - /poolalloc/trunk/lib/DSA/DataStructure.cpp
John Criswell
criswell at uiuc.edu
Wed Oct 15 09:02:51 PDT 2008
Author: criswell
Date: Wed Oct 15 11:02:51 2008
New Revision: 57580
URL: http://llvm.org/viewvc/llvm-project?rev=57580&view=rev
Log:
Silenced debugging output.
Modified:
poolalloc/trunk/lib/DSA/DataStructure.cpp
Modified: poolalloc/trunk/lib/DSA/DataStructure.cpp
URL: http://llvm.org/viewvc/llvm-project/poolalloc/trunk/lib/DSA/DataStructure.cpp?rev=57580&r1=57579&r2=57580&view=diff
==============================================================================
--- poolalloc/trunk/lib/DSA/DataStructure.cpp (original)
+++ poolalloc/trunk/lib/DSA/DataStructure.cpp Wed Oct 15 11:02:51 2008
@@ -2136,7 +2136,7 @@
// If this call site is now the same as the previous one, we can delete it
// as a duplicate.
if (*OldIt == *CI) {
- cerr << "Deleteing " << CI->getCallSite().getInstruction() << "\n";
+ DOUT << "Deleteing " << CI->getCallSite().getInstruction() << "\n";
Calls.erase(CI);
CI = OldIt;
++NumDeleted;
More information about the llvm-commits
mailing list