diff options
author | Evan Cheng <evan.cheng@apple.com> | 2007-01-22 23:11:06 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2007-01-22 23:11:06 +0000 |
commit | 74fc22d484f053908c12861bae82a6460b00326c (patch) | |
tree | 4aa9efa1e31c99aa68cee98c1ef151e2ee2c4a6a /lib/Target/PowerPC/PPCSubtarget.h | |
parent | ebd9b73ecd61cc30a3af80414dc82a5c66fb86c7 (diff) |
Double and long preferred alignment set to 8 bytes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33447 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PPCSubtarget.h')
-rw-r--r-- | lib/Target/PowerPC/PPCSubtarget.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/PowerPC/PPCSubtarget.h b/lib/Target/PowerPC/PPCSubtarget.h index de17c621bb..d8c04871f5 100644 --- a/lib/Target/PowerPC/PPCSubtarget.h +++ b/lib/Target/PowerPC/PPCSubtarget.h @@ -104,7 +104,8 @@ public: /// getTargetDataString - Return the pointer size and type alignment /// properties of this subtarget. const char *getTargetDataString() const { - return isPPC64() ? "E-p:64:64-d:32-l:32" : "E-p:32:32-d:32-l:32"; + return isPPC64() ? "E-p:64:64-d:32:64-l:32:64" + : "E-p:32:32-d:32:64-l:32:64"; } /// isPPC64 - Return true if we are generating code for 64-bit pointer mode. |