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/statistics.h | |
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/statistics.h')
-rw-r--r-- | gcc/statistics.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/statistics.h b/gcc/statistics.h index 2b06565..76a1001 100644 --- a/gcc/statistics.h +++ b/gcc/statistics.h @@ -23,7 +23,7 @@ #ifndef GCC_STATISTICS #define GCC_STATISTICS #ifdef GATHER_STATISTICS -#define MEM_STAT_DECL , const char *_loc_name ATTRIBUTE_UNUSED, int _loc_line ATTRIBUTE_UNUSED, const char *_loc_function ATTRIBUTE_UNUSED +#define MEM_STAT_DECL , const char * ARG_UNUSED (_loc_name), int ARG_UNUSED (_loc_line), const char * ARG_UNUSED (_loc_function) #define PASS_MEM_STAT , _loc_name, _loc_line, _loc_function #define MEM_STAT_INFO , __FILE__, __LINE__, __FUNCTION__ #else |