Clean up assignment of CalleeSaveStackSlotSize: get rid of the default and explicitly set this in every target that needs to change it from the default.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173270 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eli Bendersky
2013-01-23 16:22:04 +00:00
parent e735945ad7
commit e752feee52
7 changed files with 15 additions and 16 deletions

View File

@@ -351,12 +351,7 @@ namespace llvm {
/// getCalleeSaveStackSlotSize - Get the callee-saved register stack slot
/// size in bytes.
unsigned getCalleeSaveStackSlotSize() const {
// If a target doesn't explicitly initialize this member, PointerSize is
// used by default.
if (CalleeSaveStackSlotSize == 0)
return PointerSize;
else
return CalleeSaveStackSlotSize;
return CalleeSaveStackSlotSize;
}
/// isLittleEndian - True if the target is little endian.