summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorramana <ramana@138bc75d-0d04-0410-961f-82ee72b054a4>2011-05-05 09:52:12 +0000
committerramana <ramana@138bc75d-0d04-0410-961f-82ee72b054a4>2011-05-05 09:52:12 +0000
commitc275616e996d6688e2792e2d31fac113d2a186e1 (patch)
tree3957f9725ace16535cb39dbc707ef6a2854bf6ef
parentf17d2d13e03e71b846b9b035e0e1c8c6a3eae6d4 (diff)
downloadgcc-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
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/config/host-linux.c2
2 files changed, 8 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 7c0776a1f65..8ca49a51ae5 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+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.
+
2011-05-05 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
* config/spu/spu.c (TARGET_ASM_OUTPUT_MI_THUNK): Define.
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