summaryrefslogtreecommitdiff
path: root/gcc/lto-opts.c
diff options
context:
space:
mode:
authormanu <manu@138bc75d-0d04-0410-961f-82ee72b054a4>2010-05-06 10:12:36 +0000
committermanu <manu@138bc75d-0d04-0410-961f-82ee72b054a4>2010-05-06 10:12:36 +0000
commit1f3db819ff589fec50544ce334ae0200afade36f (patch)
treedbd0e72df35da905dec3347904aaa7d7fac6dd9d /gcc/lto-opts.c
parent4bb63bc871bf9102c57db32f7b15e9c0ace88c10 (diff)
downloadgcc-1f3db819ff589fec50544ce334ae0200afade36f.tar.gz
2010-05-06 Manuel López-Ibáñez <manu@gcc.gnu.org>
PR 40989 * doc/invoke.texi (Wimplicit): Document as C only. * opts.c (common_handle_option): Add argument kind. (handle_option): Rename as read_cmdline_option. Factor out code to... (handle_option): ... here. New. (handle_options): Rename as read_cmdline_options. (decode_options): Update call. (set_option): Use option index instead of option pointer. Classify diagnostics correctly. (enable_warning_as_error): Call handle_option. * opts.h (set_option): Update declaration. (handle_option): Declare. * langhooks.h (struct lang_hooks): Add argument kind to handle_option. * c.opt (Wimplicit,Wimplicit-int): Initialize to -1. * c-opts.c (set_Wimplicit): Delete. (c_family_lang_mask): New static constant. (c_common_handle_option): Add argument kind. Use handle_option instead of set_Wimplicit. (c_common_post_options): warn_implicit and warn_implicit_int are disabled by default. * c-common.c (warn_implicit): Do not define here. * c-common.h (warn_implicit): Do not declare here. (c_common_handle_option): Update declaration. * lto-opts.c (lto_reissue_options): Update call to set_option. java/ * lang.c (java_handle_option): Add argument kind. fortran/ * options.c (gfc_handle_option): Add argument kind. * gfortran.h (gfc_handle_option): Update declaration. ada/ * gcc-interface/misc.c (gnat_handle_option): Add argument kind. testsuite/ * gcc.dg/pr40989.c: New. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@159102 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/lto-opts.c')
-rw-r--r--gcc/lto-opts.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/lto-opts.c b/gcc/lto-opts.c
index f96dfab522d..b7bf6ca2c96 100644
--- a/gcc/lto-opts.c
+++ b/gcc/lto-opts.c
@@ -383,7 +383,7 @@ lto_reissue_options (void)
const struct cl_option *option = &cl_options[o->code];
if (option->flag_var)
- set_option (option, o->value, o->arg);
+ set_option (o->code, o->value, o->arg, 0 /*DK_UNSPECIFIED*/);
if (o->type == CL_TARGET)
targetm.handle_option (o->code, o->arg, o->value);