From: Andrew Pinski Date: Thu, 17 Nov 2011 21:01:08 +0000 (+0000) Subject: host-linux.c (TRY_EMPTY_VM_SPACE): Define for MIPS. X-Git-Tag: releases/gcc-4.7.0~2133 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6c1c875d6e70f6577790911cb6df5e0e60a34c9f;p=thirdparty%2Fgcc.git host-linux.c (TRY_EMPTY_VM_SPACE): Define for MIPS. 2011-11-17 Andrew Pinski * config/host-linux.c (TRY_EMPTY_VM_SPACE): Define for MIPS. From-SVN: r181456 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 34749f504a97..c34126eacb0e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2011-11-17 Andrew Pinski + + * config/host-linux.c (TRY_EMPTY_VM_SPACE): Define for MIPS. + 2011-11-17 Andrew MacLeod * builtins.c (expand_builtin): Remove 4th parameter representing diff --git a/gcc/config/host-linux.c b/gcc/config/host-linux.c index ec6105577a6e..94b7a0b89a76 100644 --- a/gcc/config/host-linux.c +++ b/gcc/config/host-linux.c @@ -86,6 +86,10 @@ # define TRY_EMPTY_VM_SPACE 0x40000000 #elif defined(__ARM_EABI__) # define TRY_EMPTY_VM_SPACE 0x60000000 +#elif defined(__mips__) && defined(__LP64__) +# define TRY_EMPTY_VM_SPACE 0x8000000000 +#elif defined(__mips__) +# define TRY_EMPTY_VM_SPACE 0x60000000 #else # define TRY_EMPTY_VM_SPACE 0 #endif