]> 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 00:40:12 +0000 (00:40 +0000)
committerAlan Modra <amodra@gcc.gnu.org>
Fri, 30 Aug 2002 00:40:12 +0000 (10:10 +0930)
* target.h (FFETARGET_32bit_longs): Don't define for powerpc64 or
mmix.

From-SVN: r56670

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

index 8c5159fbb4775b7145accd7e77f92f21eac307db..44863d5762f5b968b48c85146e8b3c4ed254a8d6 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 ae4c8e3e8c28907d73b34d9b9605dfa091f04d5e..a8c7c58989a61d8ed196a1cb9b4bc2dc62e5d9f8 100644 (file)
@@ -224,7 +224,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