1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

Change errs() to dbgs().

llvm-svn: 92650
This commit is contained in:
David Greene 2010-01-05 01:29:19 +00:00
parent 053abe1bdb
commit 8637fd7d59

View File

@ -110,7 +110,7 @@ void Constant::destroyConstantImpl() {
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";
}