host-linux.c (TRY_EMPTY_VM_SPACE): Define for __s390__ and __s390x__ hosts.
authorUlrich Weigand <uweigand@de.ibm.com>
Sat, 24 Apr 2004 00:33:18 +0000 (00:33 +0000)
committerUlrich Weigand <uweigand@gcc.gnu.org>
Sat, 24 Apr 2004 00:33:18 +0000 (00:33 +0000)
* config/host-linux.c (TRY_EMPTY_VM_SPACE): Define for __s390__
and __s390x__ hosts.

From-SVN: r81124

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

index e91015116a511c6f7aad18feb195317d8d83f89a..49f94fefaebe283f5f1a042cf9cde3d8f502dd58 100644 (file)
@@ -1,3 +1,8 @@
+2004-04-24  Ulrich Weigand  <uweigand@de.ibm.com>
+
+       * config/host-linux.c (TRY_EMPTY_VM_SPACE): Define for __s390__
+       and __s390x__ hosts.
+
 2004-03-23  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
 
        * Makefile.in (LIBGCOV): Add _gcov_fork, _gcov_execl, _gcov_execlp,
index 7302d381dbe9730d90ec355f8633dd8fc7b3f13d..777cfa9f894c93a570041f1164776a69b9d7ab9e 100644 (file)
 # define TRY_EMPTY_VM_SPACE    0x1000000000
 #elif defined(__i386)
 # define TRY_EMPTY_VM_SPACE    0x60000000
+#elif defined(__s390x__)
+# define TRY_EMPTY_VM_SPACE    0x8000000000
+#elif defined(__s390__)
+# define TRY_EMPTY_VM_SPACE    0x60000000
 #else
 # define TRY_EMPTY_VM_SPACE    0
 #endif