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

Long doubles are required to be aligned to 128 bits and svr4 32 bits.

Clang was already getting this right.

llvm-svn: 197694
This commit is contained in:
Rafael Espindola 2013-12-19 16:23:59 +00:00
parent ce61543897
commit 6cf8a98d5f

View File

@ -52,10 +52,6 @@ static std::string getDataLayoutString(const PPCSubtarget &ST) {
else
Ret += "-f64:32:64";
// Set support for 128 floats depending on the ABI.
if (!ST.isPPC64() && ST.isSVR4ABI())
Ret += "-f128:64:128";
// PPC64 has 32 and 64 bit registers, PPC32 has only 32 bit ones.
if (ST.isPPC64())
Ret += "-n32:64";