diff options
author | Roman Divacky <rdivacky@freebsd.org> | 2011-07-03 16:24:07 +0000 |
---|---|---|
committer | Roman Divacky <rdivacky@freebsd.org> | 2011-07-03 16:24:07 +0000 |
commit | 075491f2cda5965923900fb973bcec3d47b6b36e (patch) | |
tree | 2cd319fd82c75a019dd23f07db9fb122034087a1 /llvm/lib | |
parent | bb2f28f41c563a37574aae1dbecf095e3a692c1f (diff) | |
download | bcm5719-llvm-075491f2cda5965923900fb973bcec3d47b6b36e.tar.gz bcm5719-llvm-075491f2cda5965923900fb973bcec3d47b6b36e.zip |
Make the i64 and f64 be 64bit ABI aligned in the target description.
This is what both the ABI and clang says.
llvm-svn: 134367
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCSubtarget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCSubtarget.h b/llvm/lib/Target/PowerPC/PPCSubtarget.h index 33b21dba1ca..c89f922a5b6 100644 --- a/llvm/lib/Target/PowerPC/PPCSubtarget.h +++ b/llvm/lib/Target/PowerPC/PPCSubtarget.h @@ -106,7 +106,7 @@ public: // Note, the alignment values for f64 and i64 on ppc64 in Darwin // documentation are wrong; these are correct (i.e. "what gcc does"). return isPPC64() ? "E-p:64:64-f64:64:64-i64:64:64-f128:64:128-n32:64" - : "E-p:32:32-f64:32:64-i64:32:64-f128:64:128-n32"; + : "E-p:32:32-f64:64:64-i64:64:64-f128:64:128-n32"; } /// isPPC64 - Return true if we are generating code for 64-bit pointer mode. |