Remove debugging info

llvm-svn: 1093
This commit is contained in:
Chris Lattner 2001-11-03 03:31:39 +00:00
parent d61e4631f5
commit a9bdcbf060

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