diff options
author | manu <manu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-11-07 17:54:11 +0000 |
---|---|---|
committer | manu <manu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-11-07 17:54:11 +0000 |
commit | 45efa6b955cb4a928d259f5835b4813c3e1a83c2 (patch) | |
tree | c5bbf1972f8b8352a6aade708eabaa4fab6c6328 /gcc/common.opt | |
parent | 0e4e775a957d392e5c78a684004f2b82bbc3beff (diff) | |
download | gcc-45efa6b955cb4a928d259f5835b4813c3e1a83c2.tar.gz |
c-family/
2012-11-07 Manuel López-Ibáñez <manu@gcc.gnu.org>
PR c/53063
* c.opt(Warray-bounds,Wdelete-non-virtual-dtor,Wenum-compare,
Wmain,Woverlength-strings, Wunknown-pragmas,Wunused-macros):
Use LangEnabledBy.
(Wswitch,Wswitch-default,Wswitch-enum): Likewise. Move here from
common.opt.
(Wvariadic-macros): Init(1).
* c-opts.c (c_common_handle_option): Do not handle them
explicitly.
(c_common_post_options): Likewise.
(sanitize_cpp_opts): warn_unused_macros is now
cpp_warn_unused_macros.
(push_command_line_include): Likewise.
* c-common.c (warn_unknown_pragmas): Do not define.
* c-common.h (warn_unknown_pragmas): Do not declare.
gcc/
2012-11-07 Manuel López-Ibáñez <manu@gcc.gnu.org>
PR c/53063
* common.opt (Wswitch,Wswitch-default,Wswitch-enum): Move to c.opt.
fortran/
2012-11-07 Manuel López-Ibáñez <manu@gcc.gnu.org>
PR c/53063
* options.c (set_Wall): Do not set warn_switch here.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@193302 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/common.opt')
-rw-r--r-- | gcc/common.opt | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/gcc/common.opt b/gcc/common.opt index 6b95c0558b7..f947a72cc2e 100644 --- a/gcc/common.opt +++ b/gcc/common.opt @@ -632,18 +632,6 @@ Wsuggest-attribute=noreturn Common Var(warn_suggest_attribute_noreturn) Warning Warn about functions which might be candidates for __attribute__((noreturn)) -Wswitch -Common Var(warn_switch) Warning -Warn about enumerated switches, with no default, missing a case - -Wswitch-default -Common Var(warn_switch_default) Warning -Warn about enumerated switches missing a \"default:\" statement - -Wswitch-enum -Common Var(warn_switch_enum) Warning -Warn about all enumerated switches missing a specific case - Wsystem-headers Common Var(warn_system_headers) Warning Do not suppress warnings from system headers |