From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 58307 invoked by alias); 1 Jun 2015 12:59:38 -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 58280 invoked by uid 89); 1 Jun 2015 12:59:38 -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 12:59:37 +0000 Received: from relay2.suse.de (charybdis-ext.suse.de [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id 7B1D4AAF2 for ; Mon, 1 Jun 2015 12:59:34 +0000 (UTC) Message-ID: <556C5736.7040303@suse.cz> Date: Mon, 01 Jun 2015 12:59: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: [PATCH] Small pool-allocator fallback Content-Type: multipart/mixed; boundary="------------060605080705060607090606" X-IsSubscribed: yes X-SW-Source: 2015-06/txt/msg00069.txt.bz2 This is a multi-part message in MIME format. --------------060605080705060607090606 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Content-length: 248 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 --------------060605080705060607090606 Content-Type: text/x-patch; name="allocator-fallback.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="allocator-fallback.patch" Content-length: 395 Index: gcc/alloc-pool.h =================================================================== --- gcc/alloc-pool.h (revision 223973) +++ gcc/alloc-pool.h (working copy) @@ -359,7 +359,7 @@ gcc_checking_assert (m_initialized); allocation_pool_list *header; - int size; + int size ATTRIBUTE_UNUSED; size = m_elt_size - offsetof (allocation_object, u.data); #ifdef ENABLE_CHECKING --------------060605080705060607090606--