diff options
author | rearnsha <rearnsha@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-02-14 14:14:03 +0000 |
---|---|---|
committer | rearnsha <rearnsha@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-02-14 14:14:03 +0000 |
commit | f2139b9c86711a02fac1bc025552f766a2e42567 (patch) | |
tree | b67412f9aeae76ea28398680e7237066f77a54b9 /gcc/config/host-linux.c | |
parent | 44e135a677a4098f8a80568067e10ac074ba52df (diff) | |
download | gcc-f2139b9c86711a02fac1bc025552f766a2e42567.tar.gz |
PR pch/60010
2014-02-14 Kyle McMartin <kyle@redhat.com>
* config/host-linux.c (TRY_EMPTY_VM_SPACE): Define for AArch64.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@207785 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 9e2eb482247..17048d7b585 100644 --- a/gcc/config/host-linux.c +++ b/gcc/config/host-linux.c @@ -86,6 +86,8 @@ # define TRY_EMPTY_VM_SPACE 0x60000000 #elif defined(__mc68000__) # define TRY_EMPTY_VM_SPACE 0x40000000 +#elif defined(__aarch64__) +# define TRY_EMPTY_VM_SPACE 0x1000000000 #elif defined(__ARM_EABI__) # define TRY_EMPTY_VM_SPACE 0x60000000 #elif defined(__mips__) && defined(__LP64__) |