diff options
author | ramana <ramana@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-05-05 09:52:12 +0000 |
---|---|---|
committer | ramana <ramana@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-05-05 09:52:12 +0000 |
commit | c275616e996d6688e2792e2d31fac113d2a186e1 (patch) | |
tree | 3957f9725ace16535cb39dbc707ef6a2854bf6ef /gcc/config/host-linux.c | |
parent | f17d2d13e03e71b846b9b035e0e1c8c6a3eae6d4 (diff) | |
download | gcc-c275616e996d6688e2792e2d31fac113d2a186e1.tar.gz |
For Michael Hope.
2011-05-05 Michael Hope <michael.hope@linaro.org>
PR pch/45979
* config/host-linux.c (TRY_EMPTY_VM_SPACE): Define for
__ARM_EABI__ hosts.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@173421 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/host-linux.c')
-rw-r--r-- | gcc/config/host-linux.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/config/host-linux.c b/gcc/config/host-linux.c index 47ce3ea90a7..ec6105577a6 100644 --- a/gcc/config/host-linux.c +++ b/gcc/config/host-linux.c @@ -84,6 +84,8 @@ # define TRY_EMPTY_VM_SPACE 0x60000000 #elif defined(__mc68000__) # define TRY_EMPTY_VM_SPACE 0x40000000 +#elif defined(__ARM_EABI__) +# define TRY_EMPTY_VM_SPACE 0x60000000 #else # define TRY_EMPTY_VM_SPACE 0 #endif |