From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25394 invoked by alias); 20 Sep 2007 13:56:18 -0000 Received: (qmail 25380 invoked by uid 22791); 20 Sep 2007 13:56:17 -0000 X-Spam-Check-By: sourceware.org Received: from scrub.xs4all.nl (HELO scrub.xs4all.nl) (194.109.195.176) by sourceware.org (qpsmtpd/0.31) with ESMTP; Thu, 20 Sep 2007 13:56:10 +0000 Received: from roman (helo=localhost) by scrub.xs4all.nl with local-esmtp (Exim 3.36 #1 (Debian)) id 1IYMWL-0007SK-00 for ; Thu, 20 Sep 2007 15:56:45 +0200 Date: Thu, 20 Sep 2007 14:42:00 -0000 From: Roman Zippel To: gcc-patches@gcc.gnu.org Subject: [PATCH] fix gcc.dg/pch/pch for m68k Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org X-SW-Source: 2007-09/txt/msg01611.txt.bz2 Hi, These tests occasionally fail on m68k, as there is no fixed location defined for m68k, so this patch adds one. bye, Roman 200x-xx-xx Roman Zippel * config/host-linux.c (TRY_EMPTY_VM_SPACE): Define for __mc68000__. --- gcc/config/host-linux.c | 2 ++ 1 file changed, 2 insertions(+) Index: gcc/gcc/config/host-linux.c =================================================================== --- gcc.orig/gcc/config/host-linux.c +++ gcc/gcc/config/host-linux.c @@ -85,6 +85,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