1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

Double and long preferred alignment set to 8 bytes.

llvm-svn: 33447
This commit is contained in:
Evan Cheng 2007-01-22 23:11:06 +00:00
parent 8de7964067
commit c76a2c6c18

View File

@ -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.