aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-11-03 03:31:39 +0000
committerChris Lattner <sabre@nondot.org>2001-11-03 03:31:39 +0000
commitebef5e5ba24a2c30c3040c87891a45a0905e76b0 (patch)
tree4cc6fb5bf0ff1659722b08274c24521e5c34c6d6
parente244a2501478c68864a5a9c54718788bdd649b77 (diff)
Remove debugging info
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1093 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/VMCore/Type.cpp10
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);