mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-15 23:31:37 +00:00
The promotion rules are the same for all targets, they are set by the C standard.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5962 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7a5adc3ac0
commit
37ec811409
@ -20,16 +20,10 @@
|
||||
|
||||
// function TargetMachine::findOptimalStorageSize
|
||||
//
|
||||
// Purpose:
|
||||
// This default implementation assumes that all sub-word data items use
|
||||
// space equal to optSizeForSubWordData, and all other primitive data
|
||||
// items use space according to the type.
|
||||
//
|
||||
unsigned TargetMachine::findOptimalStorageSize(const Type *Ty) const {
|
||||
// Round integral values smaller than SubWordDataSize up to SubWordDataSize
|
||||
if (Ty->isIntegral() &&
|
||||
Ty->getPrimitiveSize() < DataLayout.getSubWordDataSize())
|
||||
return DataLayout.getSubWordDataSize();
|
||||
// All integer types smaller than ints promote to 4 byte integers.
|
||||
if (Ty->isIntegral() && Ty->getPrimitiveSize() < 4)
|
||||
return 4;
|
||||
|
||||
return DataLayout.getTypeSize(Ty);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user