X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=warning.c;h=e2014d20bbf959233ef190b2a71caa9e5865e69b;hb=c58c01e7c180f68d3d3a721997693abcc6e26352;hp=1347e90812c1e750dd1389a162193f3f63d7addd;hpb=69cd7c89a4d6e27d34ed9357d379112222b7b4cd;p=cparser diff --git a/warning.c b/warning.c index 1347e90..e2014d2 100644 --- a/warning.c +++ b/warning.c @@ -24,9 +24,10 @@ warning_t warning = { .aggregate_return = false, .attribute = true, - .char_subscripts = true, .cast_qual = false, + .char_subscripts = true, .comment = false, + .conversion = false, .declaration_after_statement = false, .deprecated_declarations = true, .div_by_zero = true, @@ -36,6 +37,7 @@ warning_t warning = { .format = true, .implicit_function_declaration = true, .implicit_int = true, + .init_self = true, .long_long = false, .main = true, .missing_declarations = false, @@ -44,6 +46,9 @@ warning_t warning = { .multichar = true, .nested_externs = false, .nonnull = true, + .old_style_definition = false, + .packed = false, + .padded = false, .pointer_arith = true, .redundant_decls = true, .return_type = true, @@ -53,6 +58,7 @@ warning_t warning = { .strict_prototypes = true, .switch_default = false, .switch_enum = false, + .traditional = false, .unknown_pragmas = true, .unreachable_code = false, .unused_function = false, @@ -88,6 +94,7 @@ void set_warning_opt(const char *const opt) SET(format); SET(implicit_function_declaration); SET(implicit_int); + SET(init_self); SET(main); SET(nonnull); SET(pointer_arith); @@ -107,12 +114,13 @@ void set_warning_opt(const char *const opt) } OPT("aggregate-return", aggregate_return); OPT("attribute", attribute); - OPT("char-subscripts", char_subscripts); OPT("cast-qual", cast_qual); + OPT("char-subscripts", char_subscripts); OPT("comment", comment); + OPT("conversion", conversion); OPT("declaration-after-statement", declaration_after_statement); OPT("deprecated-declarations", deprecated_declarations); - OPT("div_by_zero", div_by_zero); + OPT("div-by-zero", div_by_zero); OPT("empty-statement", empty_statement); OPT("error", s_are_errors); OPTX("extra") { @@ -137,6 +145,7 @@ void set_warning_opt(const char *const opt) } OPT("implicit-function-declaration", implicit_function_declaration); OPT("implicit-int", implicit_int); + OPT("init-self", init_self); OPT("long-long", long_long); OPT("main", main); OPT("missing-declarations", missing_declarations); @@ -145,7 +154,10 @@ void set_warning_opt(const char *const opt) OPT("multichar", multichar); OPT("nested-externs", nested_externs); OPT("nonnull", nonnull); - OPT("pointer_arith", pointer_arith); + OPT("old-style-definition", old_style_definition); + OPT("packed", packed); + OPT("padded", padded); + OPT("pointer-arith", pointer_arith); OPT("redundant-decls", redundant_decls); OPT("return-type", return_type); OPT("shadow", shadow); @@ -153,6 +165,7 @@ void set_warning_opt(const char *const opt) OPT("strict-prototypes", strict_prototypes); OPT("switch-default", switch_default); OPT("switch-enum", switch_enum); + OPT("traditional", traditional); OPT("unknown-pragmas", unknown_pragmas); OPT("unreachable-code", unreachable_code); OPTX("unused") {