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/c-opts.c | |
parent | 72bb2c39ce1c3506d94f7e2e7c2db84ee8535add (diff) | |
download | gcc-e18476eb94e8679ccd9e12776717944c5f6d52a1.tar.gz |
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/c-opts.c')
-rw-r--r-- | gcc/c-opts.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/c-opts.c b/gcc/c-opts.c index da35c5327fa..656aa2d9dcf 100644 --- a/gcc/c-opts.c +++ b/gcc/c-opts.c @@ -194,7 +194,7 @@ defer_opt (enum opt_code code, const char *arg) /* Common initialization before parsing options. */ unsigned int -c_common_init_options (unsigned int argc, const char **argv ATTRIBUTE_UNUSED) +c_common_init_options (unsigned int argc, const char ** ARG_UNUSED (argv)) { static const unsigned int lang_flags[] = {CL_C, CL_ObjC, CL_CXX, CL_ObjCXX}; unsigned int result; @@ -1354,7 +1354,7 @@ push_command_line_include (void) /* File change callback. Has to handle -include files. */ static void -cb_file_change (cpp_reader *pfile ATTRIBUTE_UNUSED, +cb_file_change (cpp_reader * ARG_UNUSED (pfile), const struct line_map *new_map) { if (flag_preprocess_only) @@ -1367,7 +1367,7 @@ cb_file_change (cpp_reader *pfile ATTRIBUTE_UNUSED, } void -cb_dir_change (cpp_reader *pfile ATTRIBUTE_UNUSED, const char *dir) +cb_dir_change (cpp_reader * ARG_UNUSED (pfile), const char *dir) { if (! set_src_pwd (dir)) warning ("too late for # directive to set debug directory"); |