This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] Small pool-allocator fallback


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  <mliska@suse.cz>
> 
> 	* 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
>From b0fb57c01a224d402dc9fb859f6be17ed57f759d Mon Sep 17 00:00:00 2001
From: mliska <mliska@suse.cz>
Date: Mon, 1 Jun 2015 15:47:43 +0200
Subject: [PATCH] Fix pool_allocator fallback.

gcc/ChangeLog:

2015-06-01  Martin Liska  <mliska@suse.cz>

	* 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]