diff options
author | Manuel López-Ibáñez <manu@gcc.gnu.org> | 2007-02-15 22:31:17 +0000 |
---|---|---|
committer | Manuel López-Ibáñez <manu@gcc.gnu.org> | 2007-02-15 22:31:17 +0000 |
commit | dc90f45b24a668f465d50a4db2253c7b84cd1c2d (patch) | |
tree | 73dcde30921d36f76037d1d0106b2271a8aa2058 /gcc/opts.c | |
parent | 214931020be4420e7a5eb537813dc918b9cada58 (diff) | |
download | gcc-dc90f45b24a668f465d50a4db2253c7b84cd1c2d.zip gcc-dc90f45b24a668f465d50a4db2253c7b84cd1c2d.tar.gz gcc-dc90f45b24a668f465d50a4db2253c7b84cd1c2d.tar.bz2 |
re PR c/26494 (-pedantic-errors can be overridden by -W*)
2007-02-15 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
PR c/26494
* doc/invoke.texi (Warning Options): Remove
-Werror-implicit-function-declaration.
(Wimplicit-function-declaration): Update description.
* opts.c (common_handle_option): Move handling of -Werror=* to...
(enable_warning_as_error): ...here.
* opts.h (enable_warning_as_error): Declare.
* c-decl.c (implicit_decl_warning): Unless
-Wno-implicit-function-declaration is given, emit a pedwarn if
-std=c99 or emit a warning if -Wimplicit-function-declaration.
* c.opt (Wimplicit-function-declaration): Replace
mesg_implicit_function_declaration with
warn_implicit_function_declaration.
* c-opts.c (c_common_handle_option):
-Werror-implicit-function-declaration is exactly equal as
-Werror=implicit-function-declaration.
(set_Wimplicit): Replace mesg_implicit_function_declaration with
warn_implicit_function_declaration.
(c_common_post_options): -Wimplict-function-declaration is enabled
by default by -std=c99, otherwise is disabled by default.
* c-objc-common.c (c_objc_common_init): Remove flawed logic.
testsuite/
* gcc.dg/Wimplicit-function-declaration-c89.c: New.
* gcc.dg/Wimplicit-function-declaration-c89-default.c: New.
* gcc.dg/Wimplicit-function-declaration-c89-pedantic.c: New.
* gcc.dg/Wimplicit-function-declaration-c99.c: New.
* gcc.dg/Wimplicit-function-declaration-c99-pedantic.c: New.
* gcc.dg/Werror-implicit-function-declaration.c: New.
From-SVN: r122017
Diffstat (limited to 'gcc/opts.c')
-rw-r--r-- | gcc/opts.c | 57 |
1 files changed, 32 insertions, 25 deletions
@@ -1067,31 +1067,7 @@ common_handle_option (size_t scode, const char *arg, int value, break; case OPT_Werror_: - { - char *new_option; - int option_index; - - new_option = XNEWVEC (char, strlen (arg) + 2); - new_option[0] = 'W'; - strcpy (new_option+1, arg); - option_index = find_opt (new_option, lang_mask); - if (option_index == N_OPTS) - { - error ("-Werror-%s: No option -%s", arg, new_option); - } - else - { - int kind = value ? DK_ERROR : DK_WARNING; - diagnostic_classify_diagnostic (global_dc, option_index, kind); - - /* -Werror=foo implies -Wfoo. */ - if (cl_options[option_index].var_type == CLVC_BOOLEAN - && cl_options[option_index].flag_var - && kind == DK_ERROR) - *(int *) cl_options[option_index].flag_var = 1; - free (new_option); - } - } + enable_warning_as_error (arg, value, lang_mask); break; case OPT_Wextra: @@ -1607,3 +1583,34 @@ get_option_state (int option, struct cl_option_state *state) } return true; } + +/* Enable a warning option as an error. This is used by -Werror= and + also by legacy Werror-implicit-function-declaration. */ + +void +enable_warning_as_error (const char *arg, int value, unsigned int lang_mask) +{ + char *new_option; + int option_index; + + new_option = XNEWVEC (char, strlen (arg) + 2); + new_option[0] = 'W'; + strcpy (new_option + 1, arg); + option_index = find_opt (new_option, lang_mask); + if (option_index == N_OPTS) + { + error ("-Werror=%s: No option -%s", arg, new_option); + } + else + { + int kind = value ? DK_ERROR : DK_WARNING; + diagnostic_classify_diagnostic (global_dc, option_index, kind); + + /* -Werror=foo implies -Wfoo. */ + if (cl_options[option_index].var_type == CLVC_BOOLEAN + && cl_options[option_index].flag_var + && kind == DK_ERROR) + *(int *) cl_options[option_index].flag_var = 1; + } + free (new_option); +} |