diff options
author | DJ Delorie <dj@redhat.com> | 2005-05-24 23:59:00 -0400 |
---|---|---|
committer | DJ Delorie <dj@gcc.gnu.org> | 2005-05-24 23:59:00 -0400 |
commit | 44c21c7f0304a014f491b822f7eaea34f2cc4c3c (patch) | |
tree | 9643535c0dbab111233baa2e45e430fa4ca4774d /gcc/flags.h | |
parent | 32a5d31dead6b6a3386cd8f792f3556b1f780b2d (diff) | |
download | gcc-44c21c7f0304a014f491b822f7eaea34f2cc4c3c.zip gcc-44c21c7f0304a014f491b822f7eaea34f2cc4c3c.tar.gz gcc-44c21c7f0304a014f491b822f7eaea34f2cc4c3c.tar.bz2 |
c-common.c (unsigned_conversion_warning): Move warning control from if() to warning(OPT_*).
* c-common.c (unsigned_conversion_warning): Move warning control
from if() to warning(OPT_*).
(c_common_truthvalue_conversion): Likewise.
(c_do_switch_warnings): Likewise.
* c-decl.c (diagnose_mismatched_decls): Likewise.
(diagnose_mismatched_decls): Likewise.
(define_label): Likewise.
(grokdeclarator): Likewise.
* c-format.c (check_format_info): Likewise.
* c-lex.c (interpret_integer): Likwise.
(lex_string): Likewise.
* c-opts.c (c_common_post_options): Likewise.
* c-parser.c (c_parser_unary_expression): Likewise.
* c-pragma.c (handle_pragma_redefine_extname): Likewise.
(handle_pragma_extern_prefix): Likewise.
* c-typeck.c (build_binary_op): Likewise.
* gcse.c (is_too_expensive): Likewise.
* opts.c (decode_options): Likewise.
* stor-layout.c (place_field): Likewise.
* tree-cfg.c (remove_bb): Likewise.
* c.opt (-Wreturn-type): Add Var(warn_return_type).
* flags.h (warn_return_type): Remove.
* toplev.c (warn_return_type): Likewise.
From-SVN: r100135
Diffstat (limited to 'gcc/flags.h')
-rw-r--r-- | gcc/flags.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/flags.h b/gcc/flags.h index 695d622..c28e16b 100644 --- a/gcc/flags.h +++ b/gcc/flags.h @@ -101,11 +101,6 @@ extern bool extra_warnings; extern void set_Wunused (int setting); -/* Nonzero means warn about function definitions that default the return type - or that use a null return and have a return-type other than void. */ - -extern int warn_return_type; - /* Nonzero means warn about any objects definitions whose size is larger than N bytes. Also want about function definitions whose returned values are larger than N bytes. The value N is in `larger_than_size'. */ |