diff options
author | Manuel López-Ibáñez <manu@gcc.gnu.org> | 2012-10-20 14:17:08 +0000 |
---|---|---|
committer | Manuel López-Ibáñez <manu@gcc.gnu.org> | 2012-10-20 14:17:08 +0000 |
commit | 4a0ae68e1ce9e7fb876b9846bee6a77d9c592e52 (patch) | |
tree | c0cc84d9ea7c7ca3b8febc047eeae70bb2aa18ac /gcc/opts.c | |
parent | f6df08e637baa5670a655e9f5736da11ea8627da (diff) | |
download | gcc-4a0ae68e1ce9e7fb876b9846bee6a77d9c592e52.zip gcc-4a0ae68e1ce9e7fb876b9846bee6a77d9c592e52.tar.gz gcc-4a0ae68e1ce9e7fb876b9846bee6a77d9c592e52.tar.bz2 |
re PR c/53063 (encode group options in the .opt files)
2012-10-20 Manuel López-Ibáñez <manu@gcc.gnu.org>
PR c/53063
PR c/40989
c-family/
* c.opt (Waddress,Wchar-subscripts,Wsign-conversion,Wimplicit,
Wimplicit-function-declaration,Wimplicit-int,Wsizeof-pointer-memaccess,
Wnarrowing,Wparentheses,Wpointer-sign,Wreturn-type,Wsequence-point,
Wsign-compare,Wuninitialized,Wmaybe-uninitialized,Wunused,
Wvolatile-register-var): Add LangEnabledBy or EnabledBy.
* c-opts.c (c_common_handle_option): Remove explicit handling from
here.
(c_common_post_options): Likewise.
gcc/
* opts.c (finish_options): Remove explicit handling from here.
From-SVN: r192635
Diffstat (limited to 'gcc/opts.c')
-rw-r--r-- | gcc/opts.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -829,10 +829,6 @@ finish_options (struct gcc_options *opts, struct gcc_options *opts_set, maybe_set_param_value (PARAM_MAX_STORES_TO_SINK, 0, opts->x_param_values, opts_set->x_param_values); - /* This replaces set_Wunused. */ - /* Wunused-local-typedefs is enabled by -Wunused or -Wall. */ - if (opts->x_warn_unused_local_typedefs == -1) - opts->x_warn_unused_local_typedefs = opts->x_warn_unused; } #define LEFT_COLUMN 27 |