host-linux.c (TRY_EMPTY_VM_SPACE): Define for __s390__ and __s390x__ hosts.

* config/host-linux.c (TRY_EMPTY_VM_SPACE): Define for __s390__
	and __s390x__ hosts.

From-SVN: r81124
This commit is contained in:
Ulrich Weigand 2004-04-24 00:33:18 +00:00 committed by Ulrich Weigand
parent b456ce4232
commit 170f9e63cd
2 changed files with 9 additions and 0 deletions

View 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,

View File

@ -71,6 +71,10 @@
# 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