From ea6955ce65ad269c0a7f4becef5578d3a316fbd7 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Fri, 24 Jul 2009 10:05:20 +0000 Subject: [PATCH] Move more to raw_ostream. llvm-svn: 76964 --- lib/VMCore/Value.cpp | 8 ++++---- lib/VMCore/ValueSymbolTable.cpp | 7 ++++--- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/lib/VMCore/Value.cpp b/lib/VMCore/Value.cpp index a78865224cd..71dec841f45 100644 --- a/lib/VMCore/Value.cpp +++ b/lib/VMCore/Value.cpp @@ -68,9 +68,9 @@ Value::~Value() { // a // if (!use_empty()) { - cerr << "While deleting: " << *VTy << " %" << getNameStr() << "\n"; + errs() << "While deleting: " << *VTy << " %" << getNameStr() << "\n"; for (use_iterator I = use_begin(), E = use_end(); I != E; ++I) - cerr << "Use still stuck around after Def is destroyed:" + errs() << "Use still stuck around after Def is destroyed:" << **I << "\n"; } #endif @@ -509,8 +509,8 @@ void ValueHandleBase::ValueIsDeleted(Value *V) { switch (ThisNode->getKind()) { case Assert: #ifndef NDEBUG // Only in -g mode... - cerr << "While deleting: " << *V->getType() << " %" << V->getNameStr() - << "\n"; + errs() << "While deleting: " << *V->getType() << " %" << V->getNameStr() + << "\n"; #endif llvm_unreachable("An asserting value handle still pointed to this" " value!"); diff --git a/lib/VMCore/ValueSymbolTable.cpp b/lib/VMCore/ValueSymbolTable.cpp index f87bb631c8d..eae3bf28003 100644 --- a/lib/VMCore/ValueSymbolTable.cpp +++ b/lib/VMCore/ValueSymbolTable.cpp @@ -17,15 +17,16 @@ #include "llvm/ValueSymbolTable.h" #include "llvm/ADT/SmallString.h" #include "llvm/Support/Debug.h" +#include "llvm/Support/raw_ostream.h" using namespace llvm; // Class destructor ValueSymbolTable::~ValueSymbolTable() { #ifndef NDEBUG // Only do this in -g mode... for (iterator VI = vmap.begin(), VE = vmap.end(); VI != VE; ++VI) - cerr << "Value still in symbol table! Type = '" - << VI->getValue()->getType()->getDescription() << "' Name = '" - << VI->getKeyData() << "'\n"; + errs() << "Value still in symbol table! Type = '" + << VI->getValue()->getType()->getDescription() << "' Name = '" + << VI->getKeyData() << "'\n"; assert(vmap.empty() && "Values remain in symbol table!"); #endif }