]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
target.h (FFETARGET_32bit_longs): Don't define for powerpc64 or mmix.
authorAlan Modra <amodra@bigpond.net.au>
Fri, 30 Aug 2002 07:29:48 +0000 (07:29 +0000)
committerAlan Modra <amodra@gcc.gnu.org>
Fri, 30 Aug 2002 07:29:48 +0000 (16:59 +0930)
* target.h (FFETARGET_32bit_longs): Don't define for powerpc64 or
mmix.

From-SVN: r56681

gcc/f/ChangeLog
gcc/f/target.h

index 1ea8e318a8dc5b9d14c5f511a6b986cf6ff8fac3..498e64d27f9b8c65d4a9dcca65c71a5f90748451 100644 (file)
@@ -1,3 +1,8 @@
+2002-08-30  Alan Modra  <amodra@bigpond.net.au>
+
+       * target.h (FFETARGET_32bit_longs): Don't define for powerpc64 or
+       mmix.
+
 2002-08-28  Joseph S. Myers  <jsm@polyomino.org.uk>
 
        * bugs.texi, news.texi: Update URLs for online news and bugs
index 09fbe5fbb6b27a1ba7ca36d6697b3cb61eff2c0d..df73dab23f7d8e17ec6564dd04ad5ad8ab6fc3ae 100644 (file)
@@ -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