From: H.J. Lu Date: Wed, 11 Apr 2012 19:37:57 +0000 (+0000) Subject: Define TRY_EMPTY_VM_SPACE to 0x60000000 for x32 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=98bf0377734efb58f705c9646ef028b5a19acaf3;p=gcc.git Define TRY_EMPTY_VM_SPACE to 0x60000000 for x32 2012-04-11 H.J. Lu * config/host-linux.c (TRY_EMPTY_VM_SPACE): Defined to 0x60000000 if __x86_64 is defined and __LP64__ isn't defined. From-SVN: r186352 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f3fcfca006d..e95e513d529 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2012-04-11 H.J. Lu + + * config/host-linux.c (TRY_EMPTY_VM_SPACE): Defined to + 0x60000000 if __x86_64 is defined and __LP64__ isn't defined. + 2012-04-11 H.J. Lu PR rtl-optimization/52876 diff --git a/gcc/config/host-linux.c b/gcc/config/host-linux.c index 94b7a0b89a7..b5357587605 100644 --- a/gcc/config/host-linux.c +++ b/gcc/config/host-linux.c @@ -68,8 +68,10 @@ # define TRY_EMPTY_VM_SPACE 0x10000000000 #elif defined(__ia64) # define TRY_EMPTY_VM_SPACE 0x2000000100000000 -#elif defined(__x86_64) +#elif defined(__x86_64) && defined(__LP64__) # define TRY_EMPTY_VM_SPACE 0x1000000000 +#elif defined(__x86_64) +# define TRY_EMPTY_VM_SPACE 0x60000000 #elif defined(__i386) # define TRY_EMPTY_VM_SPACE 0x60000000 #elif defined(__powerpc__)