diff options
-rw-r--r-- | lib/VMCore/Type.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/VMCore/Type.cpp b/lib/VMCore/Type.cpp index 29d80fc950..ad50ce0883 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<const Type*> &Types) : DerivedType("", StructTyID) { @@ -171,11 +166,6 @@ PointerType::PointerType(const Type *E) : DerivedType("", PointerTyID), ValueType(PATypeHandle<Type>(E, this)) { setDerivedTypeProperties(); } -PointerType::~PointerType() { -#ifdef DEBUG_MERGE_TYPES - cerr << "Destoyed type: " << getDescription() << endl; -#endif -} OpaqueType::OpaqueType() : DerivedType("", OpaqueTyID) { setAbstract(true); |