re PR pch/14940 (PCH largefile test fails on various platforms)
authorJames A. Morrison <phython@gcc.gnu.org>
Tue, 9 Nov 2004 12:35:15 +0000 (12:35 +0000)
committerJames A. Morrison <phython@gcc.gnu.org>
Tue, 9 Nov 2004 12:35:15 +0000 (12:35 +0000)
2004-11-07  James A. Morrison  <phython@gcc.gnu.org>

       PR pch/14940
       * config/host-linux.c (TRY_EMPTY_VM_SPACE): Add __sparc__
       definitions.

From-SVN: r90340

gcc/ChangeLog
gcc/config/host-linux.c

index edbdb47f070a83c90f66224b324abf069a3dacd0..9867428abf02d24a18c00b8083bc522707c66ae5 100644 (file)
@@ -1,3 +1,9 @@
+2004-11-07  James A. Morrison  <phython@gcc.gnu.org>
+
+       PR pch/14940
+       * config/host-linux.c (TRY_EMPTY_VM_SPACE): Add __sparc__
+       definitions.
+
 2004-11-09  Joseph S. Myers  <joseph@codesourcery.com>
 
        * builtins.c, c-common.c, c-decl.c, c-format.c: Say "argument"
index ee4e61ccbc50791b523314cf7863f06dfad4658a..717f96cdc66a2c7eda0574f335f1001cea646128 100644 (file)
 # define TRY_EMPTY_VM_SPACE    0x8000000000
 #elif defined(__s390__)
 # define TRY_EMPTY_VM_SPACE    0x60000000
+#elif defined(__sparc__) && defined(__LP64__)
+# define TRY_EMPTY_VM_SPACE    0x8000000000
+#elif defined(__sparc__)
+# define TRY_EMPTY_VM_SPACE    0x60000000
 #else
 # define TRY_EMPTY_VM_SPACE    0
 #endif