rs6000-c.c (rs6000_cpu_cpp_builtins): Define __LONGDOUBLE128 on AIX.

* config/rs6000/rs6000-c.c (rs6000_cpu_cpp_builtins): Define
        __LONGDOUBLE128 on AIX.

From-SVN: r79268
This commit is contained in:
David Edelsohn 2004-03-10 18:16:25 +00:00 committed by David Edelsohn
parent f7b48371a9
commit 35ae04ba17
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2004-03-10 David Edelsohn <edelsohn@gnu.org>
* config/rs6000/rs6000-c.c (rs6000_cpu_cpp_builtins): Define
__LONGDOUBLE128 on AIX.
2004-03-10 Andrew Haley <aph@redhat.com>
PR optimization/14381

View File

@ -113,7 +113,11 @@ rs6000_cpu_cpp_builtins (cpp_reader *pfile)
RS6000_CPU_CPP_ENDIAN_BUILTINS();
if (TARGET_LONG_DOUBLE_128)
builtin_define ("__LONG_DOUBLE_128__");
{
builtin_define ("__LONG_DOUBLE_128__");
if (TARGET_AIX && TARGET_XCOFF)
builtin_define ("__LONGDOUBLE128");
}
switch (rs6000_current_abi)
{