diff options
author | uweigand <uweigand@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-04-24 00:33:18 +0000 |
---|---|---|
committer | uweigand <uweigand@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-04-24 00:33:18 +0000 |
commit | 91b6c44045e045d9f4ae26ba637c7a6eba431eb0 (patch) | |
tree | 900db3690ca38841b203d8dd65008162f2bbaf5d /gcc/config/host-linux.c | |
parent | 03b917b7dfa66026e8de2a97bae052df2d4b8200 (diff) | |
download | gcc-91b6c44045e045d9f4ae26ba637c7a6eba431eb0.tar.gz |
* config/host-linux.c (TRY_EMPTY_VM_SPACE): Define for __s390__
and __s390x__ hosts.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@81124 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/host-linux.c')
-rw-r--r-- | gcc/config/host-linux.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/config/host-linux.c b/gcc/config/host-linux.c index 7302d381dbe..777cfa9f894 100644 --- a/gcc/config/host-linux.c +++ b/gcc/config/host-linux.c @@ -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 |