diff options
| author | Daniel Dunbar <daniel@zuster.org> | 2009-07-24 10:05:20 +0000 |
|---|---|---|
| committer | Daniel Dunbar <daniel@zuster.org> | 2009-07-24 10:05:20 +0000 |
| commit | b99eac88144da4c79a03ef90cac78336bc90228f (patch) | |
| tree | 38ad2ad28f61bf3cae228500c8abf5f225775043 | |
| parent | 8ef0735dd5772644e4fdbf91693ae9d3bc6a1bf6 (diff) | |
| download | bcm5719-llvm-b99eac88144da4c79a03ef90cac78336bc90228f.tar.gz bcm5719-llvm-b99eac88144da4c79a03ef90cac78336bc90228f.zip | |
Move more to raw_ostream.
llvm-svn: 76964
| -rw-r--r-- | llvm/lib/VMCore/Value.cpp | 8 | ||||
| -rw-r--r-- | llvm/lib/VMCore/ValueSymbolTable.cpp | 7 |
2 files changed, 8 insertions, 7 deletions
diff --git a/llvm/lib/VMCore/Value.cpp b/llvm/lib/VMCore/Value.cpp index a78865224cd..71dec841f45 100644 --- a/llvm/lib/VMCore/Value.cpp +++ b/llvm/lib/VMCore/Value.cpp @@ -68,9 +68,9 @@ Value::~Value() { // a <badref> // 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/llvm/lib/VMCore/ValueSymbolTable.cpp b/llvm/lib/VMCore/ValueSymbolTable.cpp index f87bb631c8d..eae3bf28003 100644 --- a/llvm/lib/VMCore/ValueSymbolTable.cpp +++ b/llvm/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 } |

