From 19327a1a0b6f859225cb386717394fa18a85ee63 Mon Sep 17 00:00:00 2001 From: Roman Zippel Date: Thu, 17 Jul 2008 10:04:51 +0000 Subject: [PATCH] re PR target/25343 ([m68k] testsuite failures) 2008-07-17 Roman Zippel PR target/25343 * config/host-linux.c (TRY_EMPTY_VM_SPACE): Define for __mc68000__. From-SVN: r137918 --- gcc/ChangeLog | 5 +++++ gcc/config/host-linux.c | 2 ++ 2 files changed, 7 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7933b10d60c..b6db7b7803a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2008-07-17 Roman Zippel + + PR target/25343 + * config/host-linux.c (TRY_EMPTY_VM_SPACE): Define for __mc68000__. + 2008-07-17 Paolo Bonzini PR rtl-optimization/36753 diff --git a/gcc/config/host-linux.c b/gcc/config/host-linux.c index f0666173b62..c94f822f701 100644 --- a/gcc/config/host-linux.c +++ b/gcc/config/host-linux.c @@ -84,6 +84,8 @@ # define TRY_EMPTY_VM_SPACE 0x8000000000 #elif defined(__sparc__) # define TRY_EMPTY_VM_SPACE 0x60000000 +#elif defined(__mc68000__) +# define TRY_EMPTY_VM_SPACE 0x40000000 #else # define TRY_EMPTY_VM_SPACE 0 #endif -- 2.30.2