diff options
author | David Greene <greened@obbligato.org> | 2010-01-05 01:29:39 +0000 |
---|---|---|
committer | David Greene <greened@obbligato.org> | 2010-01-05 01:29:39 +0000 |
commit | c0a6a2afcb2af269b989e5cf0eb471c1e1a7263f (patch) | |
tree | ce135886264885ca798b08b1b6974f19db1ac3d1 /lib/VMCore | |
parent | 9759c305c2dbca2ba46645638ed39d5cb40b66d1 (diff) | |
download | external_llvm-c0a6a2afcb2af269b989e5cf0eb471c1e1a7263f.zip external_llvm-c0a6a2afcb2af269b989e5cf0eb471c1e1a7263f.tar.gz external_llvm-c0a6a2afcb2af269b989e5cf0eb471c1e1a7263f.tar.bz2 |
Change errs() to dbgs().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92656 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore')
-rw-r--r-- | lib/VMCore/TypesContext.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/VMCore/TypesContext.h b/lib/VMCore/TypesContext.h index e7950bd..93a801b 100644 --- a/lib/VMCore/TypesContext.h +++ b/lib/VMCore/TypesContext.h @@ -302,7 +302,7 @@ public: void RefineAbstractType(TypeClass *Ty, const DerivedType *OldType, const Type *NewType) { #ifdef DEBUG_MERGE_TYPES - DEBUG(errs() << "RefineAbstractType(" << (void*)OldType << "[" << *OldType + DEBUG(dbgs() << "RefineAbstractType(" << (void*)OldType << "[" << *OldType << "], " << (void*)NewType << " [" << *NewType << "])\n"); #endif @@ -408,11 +408,11 @@ public: void print(const char *Arg) const { #ifdef DEBUG_MERGE_TYPES - DEBUG(errs() << "TypeMap<>::" << Arg << " table contents:\n"); + DEBUG(dbgs() << "TypeMap<>::" << Arg << " table contents:\n"); unsigned i = 0; for (typename std::map<ValType, PATypeHolder>::const_iterator I = Map.begin(), E = Map.end(); I != E; ++I) - DEBUG(errs() << " " << (++i) << ". " << (void*)I->second.get() << " " + DEBUG(dbgs() << " " << (++i) << ". " << (void*)I->second.get() << " " << *I->second.get() << "\n"); #endif } |