diff options
author | Bernardo Innocenti <bernie@develer.com> | 2004-07-25 02:13:01 +0200 |
---|---|---|
committer | Bernardo Innocenti <bernie@gcc.gnu.org> | 2004-07-25 02:13:01 +0200 |
commit | e18476eb94e8679ccd9e12776717944c5f6d52a1 (patch) | |
tree | 6ec6310142f700f2527b493abb45b8e621af8dc0 /gcc/ggc-none.c | |
parent | 72bb2c39ce1c3506d94f7e2e7c2db84ee8535add (diff) | |
download | gcc-e18476eb94e8679ccd9e12776717944c5f6d52a1.zip gcc-e18476eb94e8679ccd9e12776717944c5f6d52a1.tar.gz gcc-e18476eb94e8679ccd9e12776717944c5f6d52a1.tar.bz2 |
c-common.c: Convert ATTRIBUTE_UNUSED to ARG_UNUSED in parameter lists.
* c-common.c: Convert ATTRIBUTE_UNUSED to ARG_UNUSED in parameter
lists.
* c-decl.c: Likewise.
* c-format.c: Likewise.
* c-lex.c: Likewise.
* c-opts.c: Likewise.
* c-pragma.c: Likewise.
* c-typeck.c: Likewise.
* gencheck.c: Likewise.
* genconditions.c: Likewise.
* genconfig.c: Likewise.
* genflags.c: Likewise.
* gengtype.c: Likewise.
* gensupport.c: Likewise.
* ggc-none.c: Likewise.
* langhooks.c: Likewise.
* statistics.h: Likewise.
* stub-objc.c: Likewise.
* java/decl.c: Likewise.
From-SVN: r85128
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 4d4604a..4c7e519 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); |