The promotion rules are the same for all targets, they are set by the C standard.
authorChris Lattner <sabre@nondot.org>
Sat, 26 Apr 2003 19:47:36 +0000 (19:47 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 26 Apr 2003 19:47:36 +0000 (19:47 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5962 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/TargetMachine.cpp

index dc722fc7e5c72eeade9a21c46985708372ee23a8..24788e3c4d9d153409cc92063ab408c36c154c0d 100644 (file)
 
 // 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);
 }