From: Alan Modra Date: Fri, 30 Aug 2002 07:29:48 +0000 (+0000) Subject: target.h (FFETARGET_32bit_longs): Don't define for powerpc64 or mmix. X-Git-Tag: releases/gcc-3.2.1~342 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0cbefc5996c00f32d19dbd8968c266fb3ce98576;p=thirdparty%2Fgcc.git target.h (FFETARGET_32bit_longs): Don't define for powerpc64 or mmix. * target.h (FFETARGET_32bit_longs): Don't define for powerpc64 or mmix. From-SVN: r56681 --- diff --git a/gcc/f/ChangeLog b/gcc/f/ChangeLog index 1ea8e318a8dc..498e64d27f9b 100644 --- a/gcc/f/ChangeLog +++ b/gcc/f/ChangeLog @@ -1,3 +1,8 @@ +2002-08-30 Alan Modra + + * target.h (FFETARGET_32bit_longs): Don't define for powerpc64 or + mmix. + 2002-08-28 Joseph S. Myers * bugs.texi, news.texi: Update URLs for online news and bugs diff --git a/gcc/f/target.h b/gcc/f/target.h index 09fbe5fbb6b2..df73dab23f7d 100644 --- a/gcc/f/target.h +++ b/gcc/f/target.h @@ -1,5 +1,5 @@ /* target.h -- Public #include File (module.h template V1.0) - Copyright (C) 1995, 1996 Free Software Foundation, Inc. + Copyright (C) 1995, 1996, 2002 Free Software Foundation, Inc. Contributed by James Craig Burley. This file is part of GNU Fortran. @@ -234,7 +234,15 @@ the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA #define FFETARGET_f2cTYLOGICAL2 13 #define FFETARGET_f2cTYQUAD 14 -#if !defined(__alpha__) && (!defined (_ARCH_PPC) || !defined (__64BIT__)) && (!defined(__sparc__) || (!defined(__sparcv9) && !defined(__arch64__))) && (!defined(__ia64__) || !defined(__LP64__)) && (!defined(__hppa__) || !defined(__LP64__)) && !defined(__s390x__) && !defined(__x86_64__) +#if (!defined(__alpha__) \ + && (!defined(__hppa__) || !defined(__LP64__)) \ + && (!defined(__ia64__) || !defined(__LP64__)) \ + && !defined(__MMIX__) \ + && (!defined (_ARCH_PPC) || !defined (__64BIT__)) \ + && !defined(__powerpc64__) \ + && !defined(__s390x__) \ + && (!defined(__sparc__) || (!defined(__sparcv9) && !defined(__arch64__)))\ + && !defined(__x86_64__)) #define FFETARGET_32bit_longs #endif