aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore/TypesContext.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-08-23 04:44:11 +0000
committerChris Lattner <sabre@nondot.org>2009-08-23 04:44:11 +0000
commit569f121f4ecc53f8ab505c4ccb6e1e77c78e188d (patch)
treeccaec7707f4eaaa3f2c7863efcf9ecad86b9a87b /lib/VMCore/TypesContext.h
parent05e9d99767ea02d516bf4fe9c457622b2530e077 (diff)
downloadexternal_llvm-569f121f4ecc53f8ab505c4ccb6e1e77c78e188d.zip
external_llvm-569f121f4ecc53f8ab505c4ccb6e1e77c78e188d.tar.gz
external_llvm-569f121f4ecc53f8ab505c4ccb6e1e77c78e188d.tar.bz2
remove some DOUTs
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79821 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/TypesContext.h')
-rw-r--r--lib/VMCore/TypesContext.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/VMCore/TypesContext.h b/lib/VMCore/TypesContext.h
index 8e24879..2a287fe 100644
--- a/lib/VMCore/TypesContext.h
+++ b/lib/VMCore/TypesContext.h
@@ -304,8 +304,8 @@ public:
void RefineAbstractType(TypeClass *Ty, const DerivedType *OldType,
const Type *NewType) {
#ifdef DEBUG_MERGE_TYPES
- DOUT << "RefineAbstractType(" << (void*)OldType << "[" << *OldType
- << "], " << (void*)NewType << " [" << *NewType << "])\n";
+ DEBUG(errs() << "RefineAbstractType(" << (void*)OldType << "[" << *OldType
+ << "], " << (void*)NewType << " [" << *NewType << "])\n");
#endif
// Otherwise, we are changing one subelement type into another. Clearly the
@@ -410,12 +410,12 @@ public:
void print(const char *Arg) const {
#ifdef DEBUG_MERGE_TYPES
- DOUT << "TypeMap<>::" << Arg << " table contents:\n";
+ DEBUG(errs() << "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)
- DOUT << " " << (++i) << ". " << (void*)I->second.get() << " "
- << *I->second.get() << "\n";
+ DEBUG(errs() << " " << (++i) << ". " << (void*)I->second.get() << " "
+ << *I->second.get() << "\n");
#endif
}