forked from OSchip/llvm-project
Fix powerpc test failure - forgot to initialize stack slot size for PPCLinuxMCAsmInfo
llvm-svn: 173275
This commit is contained in:
parent
aeeca770b3
commit
f759526983
|
@ -36,8 +36,9 @@ PPCMCAsmInfoDarwin::PPCMCAsmInfoDarwin(bool is64Bit) {
|
|||
void PPCLinuxMCAsmInfo::anchor() { }
|
||||
|
||||
PPCLinuxMCAsmInfo::PPCLinuxMCAsmInfo(bool is64Bit) {
|
||||
if (is64Bit)
|
||||
PointerSize = 8;
|
||||
if (is64Bit) {
|
||||
PointerSize = CalleeSaveStackSlotSize = 8;
|
||||
}
|
||||
IsLittleEndian = false;
|
||||
|
||||
// ".comm align is in bytes but .align is pow-2."
|
||||
|
|
Loading…
Reference in New Issue