[llvm-commits] [llvm] r92650 - /llvm/trunk/lib/VMCore/Constants.cpp
David Greene
greened at obbligato.org
Mon Jan 4 17:29:19 PST 2010
Author: greened
Date: Mon Jan 4 19:29:19 2010
New Revision: 92650
URL: http://llvm.org/viewvc/llvm-project?rev=92650&view=rev
Log:
Change errs() to dbgs().
Modified:
llvm/trunk/lib/VMCore/Constants.cpp
Modified: llvm/trunk/lib/VMCore/Constants.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/VMCore/Constants.cpp?rev=92650&r1=92649&r2=92650&view=diff
==============================================================================
--- llvm/trunk/lib/VMCore/Constants.cpp (original)
+++ llvm/trunk/lib/VMCore/Constants.cpp Mon Jan 4 19:29:19 2010
@@ -110,7 +110,7 @@
Value *V = use_back();
#ifndef NDEBUG // Only in -g mode...
if (!isa<Constant>(V)) {
- errs() << "While deleting: " << *this
+ dbgs() << "While deleting: " << *this
<< "\n\nUse still stuck around after Def is destroyed: "
<< *V << "\n\n";
}
More information about the llvm-commits
mailing list