diff options
author | phython <phython@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-09 12:35:15 +0000 |
---|---|---|
committer | phython <phython@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-11-09 12:35:15 +0000 |
commit | 15b2ce926eed801d566c4145d7b1a1be0c7aa7ad (patch) | |
tree | 446090666f2066944f62ff08024e7aba151b6ae6 /gcc/config/host-linux.c | |
parent | b7bf184f5b93e220b7a3abe828153718211616ec (diff) | |
download | gcc-15b2ce926eed801d566c4145d7b1a1be0c7aa7ad.tar.gz |
2004-11-07 James A. Morrison <phython@gcc.gnu.org>
PR pch/14940
* config/host-linux.c (TRY_EMPTY_VM_SPACE): Add __sparc__
definitions.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90340 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 ee4e61ccbc5..717f96cdc66 100644 --- a/gcc/config/host-linux.c +++ b/gcc/config/host-linux.c @@ -77,6 +77,10 @@ # 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 |