Double alignment in structs is 4 bytes, not 8. Patch by Nate Begeman.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15034 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Misha Brukman 2004-07-20 15:43:25 +00:00
parent a39fc0efcf
commit 5c4544160f

View File

@ -52,7 +52,7 @@ unsigned PowerPCTargetMachine::getModuleMatchQuality(const Module &M) {
///
PowerPCTargetMachine::PowerPCTargetMachine(const Module &M,
IntrinsicLowering *IL)
: TargetMachine("PowerPC", IL, false, 4, 4, 8, 4, 4, 4, 4, 4),
: TargetMachine("PowerPC", IL, false, 4, 4, 4, 4, 4, 4, 4, 4),
FrameInfo(TargetFrameInfo::StackGrowsDown, 16, -4), JITInfo(*this) {
}