forked from OSchip/llvm-project
parent
82baa9c394
commit
c832e546d0
|
@ -54,10 +54,3 @@ TargetMachine::~TargetMachine() {
|
||||||
delete IL;
|
delete IL;
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned TargetMachine::findOptimalStorageSize(const Type *Ty) const {
|
|
||||||
// All integer types smaller than ints promote to 4 byte integers.
|
|
||||||
if (Ty->isIntegral() && Ty->getPrimitiveSize() < 4)
|
|
||||||
return 4;
|
|
||||||
|
|
||||||
return DataLayout.getTypeSize(Ty);
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue