Remove debugging info

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1093 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2001-11-03 03:31:39 +00:00
parent e244a25014
commit ebef5e5ba2

View 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);