From: Chris Lattner Date: Sat, 3 Nov 2001 03:31:39 +0000 (+0000) Subject: Remove debugging info X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=ebef5e5ba24a2c30c3040c87891a45a0905e76b0;p=oota-llvm.git Remove debugging info git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1093 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/Type.cpp b/lib/VMCore/Type.cpp index 29d80fc950c..ad50ce08839 100644 --- a/lib/VMCore/Type.cpp +++ b/lib/VMCore/Type.cpp @@ -151,11 +151,6 @@ ArrayType::ArrayType(const Type *ElType, int NumEl) NumElements = NumEl; setDerivedTypeProperties(); } -ArrayType::~ArrayType() { -#ifdef DEBUG_MERGE_TYPES - cerr << "Destroyed type: " << getDescription() << endl; -#endif -} StructType::StructType(const vector &Types) : DerivedType("", StructTyID) { @@ -171,11 +166,6 @@ PointerType::PointerType(const Type *E) : DerivedType("", PointerTyID), ValueType(PATypeHandle(E, this)) { setDerivedTypeProperties(); } -PointerType::~PointerType() { -#ifdef DEBUG_MERGE_TYPES - cerr << "Destoyed type: " << getDescription() << endl; -#endif -} OpaqueType::OpaqueType() : DerivedType("", OpaqueTyID) { setAbstract(true);