diff options
author | Chris Lattner <sabre@nondot.org> | 2005-07-21 19:17:18 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-07-21 19:17:18 +0000 |
commit | 2130c0893041718f6d5c2bf3df4ba0ddce9adb08 (patch) | |
tree | 843ae5114c6cce14e7edc851a8495d73583e10d6 /lib/Target/PowerPC/PPCTargetMachine.cpp | |
parent | a4d7414a59114b2fe0595fb45bd71ce8ad35b546 (diff) |
revert to using 4-byte alignment for doubles, as specified by the ABI
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22493 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 55df4142be..d2a9781d5d 100644 --- a/lib/Target/PowerPC/PPCTargetMachine.cpp +++ b/lib/Target/PowerPC/PPCTargetMachine.cpp @@ -177,7 +177,7 @@ PPC32TargetMachine::PPC32TargetMachine(const Module &M, IntrinsicLowering *IL) /// PPC64TargetMachine::PPC64TargetMachine(const Module &M, IntrinsicLowering *IL) : PowerPCTargetMachine(PPC64ID, IL, - TargetData(PPC64ID,false,8,4,8,4,4,4,2,1,1), + TargetData(PPC64ID,false,8,4,4,4,4,4,2,1,1), PowerPCFrameInfo(*this, true)) {} unsigned PPC32TargetMachine::getModuleMatchQuality(const Module &M) { |