diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2004-07-20 20:59:57 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-07-20 20:59:57 +0000 |
commit | cd2273f4a795eacf474adff5b016511032e20a24 (patch) | |
tree | b10862d02ae591efdff5ae8914fc68f37f1988bc /lib/Target/PowerPC/PPCTargetMachine.cpp | |
parent | bf417a6d46d6e1e09fd10e20e863d451924bf083 (diff) |
Shorts are aligned to 2 bytes, bools to 1 byte (in structs).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15048 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PPCTargetMachine.cpp')
-rw-r--r-- | lib/Target/PowerPC/PPCTargetMachine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/PowerPC/PPCTargetMachine.cpp b/lib/Target/PowerPC/PPCTargetMachine.cpp index f649b3618c..cdeb3fc15c 100644 --- a/lib/Target/PowerPC/PPCTargetMachine.cpp +++ b/lib/Target/PowerPC/PPCTargetMachine.cpp @@ -52,7 +52,7 @@ unsigned PowerPCTargetMachine::getModuleMatchQuality(const Module &M) { /// PowerPCTargetMachine::PowerPCTargetMachine(const Module &M, IntrinsicLowering *IL) - : TargetMachine("PowerPC", IL, false, 4, 4, 4, 4, 4, 4, 4, 4), + : TargetMachine("PowerPC", IL, false, 4, 4, 4, 4, 4, 4, 2, 1), FrameInfo(TargetFrameInfo::StackGrowsDown, 16, -4), JITInfo(*this) { } |