mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-05 03:36:43 +00:00
Remove debugging info
llvm-svn: 1093
This commit is contained in:
parent
d61e4631f5
commit
a9bdcbf060
@ -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…
x
Reference in New Issue
Block a user