From: Martin Liska Date: Mon, 1 Jun 2015 13:01:12 +0000 (+0200) Subject: Small pool-allocator fallback. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c547dbce4aa51743690c6e7270cf99098c89ba6a;p=gcc.git Small pool-allocator fallback. * alloc-pool.h: Add ATTRIBUTE_UNUSED for a function local variabled. From-SVN: r223974 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f96a2ef8d0b..9e18b50b23e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2015-06-01 Martin Liska + + * alloc-pool.h: Add ATTRIBUTE_UNUSED for + a function local variable. + 2015-06-01 Martin Liska * alloc-pool.c (create_alloc_pool): Remove. diff --git a/gcc/alloc-pool.h b/gcc/alloc-pool.h index 65087265527..96a1342b9fa 100644 --- a/gcc/alloc-pool.h +++ b/gcc/alloc-pool.h @@ -359,7 +359,7 @@ pool_allocator::remove (T *object) 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