X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=warning.c;h=05195e6227f04db7efa1d07e54daee80bc1fb057;hb=2151f7ff22ee388e6a57ff024d2558101907e7f7;hp=c149d94b341fb56a7b19a8102de6854b1105e48e;hpb=b8df54059f5ceb0bb6c767aaaf94840dc0b38e25;p=cparser diff --git a/warning.c b/warning.c index c149d94..05195e6 100644 --- a/warning.c +++ b/warning.c @@ -1,3 +1,22 @@ +/* + * 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" @@ -13,8 +32,11 @@ warning_t warning = { .main = true, .missing_declarations = false, .missing_prototypes = false, + .multichar = true, .redundant_decls = true, .s_are_errors = false, + .shadow = false, + .sign_compare = false, .strict_prototypes = true, .switch_default = false, .unknown_pragmas = true, @@ -42,6 +64,7 @@ void set_warning_opt(const char *const opt) #define SET(y) warning.y = state; #define OPT(x, y) OPTX(x) SET(y) OPTX("all") { + /* Note: this switched on a lot of more warnings than gcc's -Wall */ SET(char_subscripts) SET(check_format) SET(empty_statement) @@ -49,8 +72,9 @@ void set_warning_opt(const char *const opt) SET(implicit_int) SET(main) SET(redundant_decls) + SET(shadow) + SET(sign_compare) SET(strict_prototypes) - SET(switch_default) SET(unknown_pragmas) SET(unused_function) SET(unused_label) @@ -83,14 +107,13 @@ 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) OPT("strict-prototypes", strict_prototypes) OPT("switch-default", switch_default) OPT("unknown-pragmas", unknown_pragmas) - OPT("unused-function", unused_function) - OPT("unused-label", unused_label) - OPT("unused-parameter", unused_parameter) - OPT("unused-variable", unused_variable) OPTX("unused") { SET(unused_function) SET(unused_label)