diff options
Diffstat (limited to 'gcc/ggc-none.c')
-rw-r--r-- | gcc/ggc-none.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ggc-none.c b/gcc/ggc-none.c index 4d4604adcdf..4c7e5190682 100644 --- a/gcc/ggc-none.c +++ b/gcc/ggc-none.c @@ -32,7 +32,7 @@ struct alloc_zone *rtl_zone = NULL; struct alloc_zone *garbage_zone = NULL; void * -ggc_alloc_typed_stat (enum gt_types_enum gte ATTRIBUTE_UNUSED, size_t size +ggc_alloc_typed_stat (enum gt_types_enum ARG_UNUSED (gte), size_t size MEM_STAT_DECL) { return xmalloc (size); @@ -45,7 +45,7 @@ ggc_alloc_stat (size_t size MEM_STAT_DECL) } void * -ggc_alloc_zone_stat (size_t size, struct alloc_zone *zone ATTRIBUTE_UNUSED +ggc_alloc_zone_stat (size_t size, struct alloc_zone * ARG_UNUSED (zone) MEM_STAT_DECL) { return xmalloc (size); |