Remove debugging info
authorChris Lattner <sabre@nondot.org>
Sat, 3 Nov 2001 03:31:39 +0000 (03:31 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 3 Nov 2001 03:31:39 +0000 (03:31 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1093 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/Type.cpp

index 29d80fc950c6abd6de7380e53004d6f4a6f81dc8..ad50ce08839b22482e550ae5e4b302f72920278c 100644 (file)
@@ -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);