From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 88575 invoked by alias); 1 Jun 2015 13:51:20 -0000 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 Received: (qmail 88563 invoked by uid 89); 1 Jun 2015 13:51:20 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=0.8 required=5.0 tests=AWL,BAYES_50,KAM_LAZY_DOMAIN_SECURITY autolearn=no version=3.3.2 X-HELO: mx2.suse.de Received: from cantor2.suse.de (HELO mx2.suse.de) (195.135.220.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (CAMELLIA256-SHA encrypted) ESMTPS; Mon, 01 Jun 2015 13:51:19 +0000 Received: from relay2.suse.de (charybdis-ext.suse.de [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id 11F74AAF2 for ; Mon, 1 Jun 2015 13:51:16 +0000 (UTC) Message-ID: <556C6353.6010303@suse.cz> Date: Mon, 01 Jun 2015 13:51:00 -0000 From: =?UTF-8?B?TWFydGluIExpxaFrYQ==?= User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.6.0 MIME-Version: 1.0 To: GCC Patches Subject: Re: [PATCH] Small pool-allocator fallback References: <556C5736.7040303@suse.cz> In-Reply-To: <556C5736.7040303@suse.cz> Content-Type: multipart/mixed; boundary="------------050708090509060007060908" X-IsSubscribed: yes X-SW-Source: 2015-06/txt/msg00074.txt.bz2 This is a multi-part message in MIME format. --------------050708090509060007060908 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Content-length: 553 On 06/01/2015 02:59 PM, Martin Liška wrote: > Hello. > > This is small fallback related to pool-allocator patch. > I'm going to install it as obvious. > > gcc/ChangeLog: > > 2015-06-01 Martin Liska > > * alloc-pool.h: Add ATTRIBUTE_UNUSED for > a function local variable. > > Thanks, > Martin > Hello. This is second small correction that corrects broken bootstrap on xstormy16-elf: http://toolchain.lug-owl.de/buildbot/deliver_artifact.php?mode=view&id=3918338 I'm going to install the patch as obvious. Thanks, Martin --------------050708090509060007060908 Content-Type: text/x-patch; name="0001-Fix-pool_allocator-fallback.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="0001-Fix-pool_allocator-fallback.patch" Content-length: 748 >From b0fb57c01a224d402dc9fb859f6be17ed57f759d Mon Sep 17 00:00:00 2001 From: mliska Date: Mon, 1 Jun 2015 15:47:43 +0200 Subject: [PATCH] Fix pool_allocator fallback. gcc/ChangeLog: 2015-06-01 Martin Liska * sched-deps.c: Include pool-alloc.h before cselib.h header file is included. --- gcc/sched-deps.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gcc/sched-deps.c b/gcc/sched-deps.c index 30d4630..d3ae80b 100644 --- a/gcc/sched-deps.c +++ b/gcc/sched-deps.c @@ -54,6 +54,7 @@ along with GCC; see the file COPYING3. If not see #include "basic-block.h" #include "sched-int.h" #include "params.h" +#include "alloc-pool.h" #include "cselib.h" #include "ira.h" #include "target.h" -- 2.1.4 --------------050708090509060007060908--