mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
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:
parent
e244a25014
commit
ebef5e5ba2
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user