diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-12-16 18:01:51 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-12-16 18:01:51 +0000 |
commit | bccb9d45ad1e4b84258b3ba4ec6d1c1e8f633bb1 (patch) | |
tree | 4cb8c90da3e20796f4fa076b5e3bdb974554ac53 /llvm/lib/Target/PowerPC/PPCTargetMachine.cpp | |
parent | ef9a766555ca102fd5f1f8e6e3dcf01b66b5de16 (diff) | |
download | llvm-bccb9d45ad1e4b84258b3ba4ec6d1c1e8f633bb1.zip llvm-bccb9d45ad1e4b84258b3ba4ec6d1c1e8f633bb1.tar.gz llvm-bccb9d45ad1e4b84258b3ba4ec6d1c1e8f633bb1.tar.bz2 |
The preferred alignment defaults to the abi alignment. Omit if it is the same.
llvm-svn: 197400
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCTargetMachine.cpp')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCTargetMachine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp b/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp index 25badb1..17799cb 100644 --- a/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp +++ b/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp @@ -44,7 +44,7 @@ static std::string getDataLayoutString(const PPCSubtarget &ST) { // Note, the alignment values for f64 and i64 on ppc64 in Darwin // documentation are wrong; these are correct (i.e. "what gcc does"). - Ret += "-i64:64:64"; + Ret += "-i64:64"; // Set support for 128 floats depending on the ABI. if (!ST.isPPC64() || !ST.isSVR4ABI()) |