X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=warning.c;h=42b47b4675a84eeca6d87c25edad69d9a76c710d;hb=ac8825ce886206a4d8b44e74c55b206328da3422;hp=345b62a85fb5852fa8c9ca6e3909f0afd73af88b;hpb=de647e08ed8df756b8b7acb6b1a26df8e91a2921;p=cparser diff --git a/warning.c b/warning.c index 345b62a..42b47b4 100644 --- a/warning.c +++ b/warning.c @@ -1,10 +1,31 @@ +/* + * This file is part of cparser. + * Copyright (C) 2007-2008 Matthias Braun + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA + * 02111-1307, USA. + */ #include #include #include "warning.h" warning_t warning = { + .attribute = true, .char_subscripts = true, - .check_format = true, + .format = true, + .nonnull = true, .empty_statement = false, .fatal_errors = false, .float_equal = false, @@ -13,6 +34,7 @@ warning_t warning = { .main = true, .missing_declarations = false, .missing_prototypes = false, + .multichar = true, .redundant_decls = true, .s_are_errors = false, .shadow = false, @@ -24,7 +46,8 @@ warning_t warning = { .unused_label = false, .unused_parameter = false, .unused_value = true, - .unused_variable = false + .unused_variable = false, + .return_type = true }; void set_warning_opt(const char *const opt) @@ -45,8 +68,10 @@ void set_warning_opt(const char *const opt) #define OPT(x, y) OPTX(x) SET(y) OPTX("all") { /* Note: this switched on a lot of more warnings than gcc's -Wall */ + SET(attribute) SET(char_subscripts) - SET(check_format) + SET(format) + SET(nonnull) SET(empty_statement) SET(implicit_function_declaration) SET(implicit_int) @@ -55,14 +80,15 @@ void set_warning_opt(const char *const opt) SET(shadow) SET(sign_compare) SET(strict_prototypes) - SET(switch_default) SET(unknown_pragmas) SET(unused_function) SET(unused_label) SET(unused_parameter) SET(unused_value) SET(unused_variable) + SET(return_type) } + OPT("attribute", attribute) OPT("char-subscripts", char_subscripts) OPT("empty-statement", empty_statement) OPT("error", s_are_errors) @@ -78,7 +104,11 @@ void set_warning_opt(const char *const opt) } OPT("fatal-errors", fatal_errors) OPT("float-equal", float_equal) - OPT("format", check_format) + OPTX("format") { + SET(format) + SET(nonnull) + } + OPT("nonnull", nonnull) OPTX("implicit") { SET(implicit_function_declaration) SET(implicit_int) @@ -88,6 +118,7 @@ void set_warning_opt(const char *const opt) OPT("main", main) OPT("missing-declarations", missing_declarations) OPT("missing-prototypes", missing_prototypes) + OPT("multichar", multichar) OPT("redundant-decls", redundant_decls) OPT("shadow", shadow) OPT("sign-compare", sign_compare) @@ -106,6 +137,7 @@ void set_warning_opt(const char *const opt) OPT("unused-parameter", unused_parameter) OPT("unused-value", unused_value) OPT("unused-variable", unused_variable) + OPT("return-type", return_type) #undef OPT #undef SET #undef OPT_X