X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=warning.c;h=77649d67ca974c6990a3969ee3d6db4716b31c8c;hb=399a93414afe8992d5e156e765aa0b036d055a94;hp=5684886dc97271660372c2c4de5b508fce6242f8;hpb=ba0d46aeb8456932335728047230840ef65fdcf4;p=cparser diff --git a/warning.c b/warning.c index 5684886..77649d6 100644 --- a/warning.c +++ b/warning.c @@ -22,6 +22,9 @@ #include "warning.h" warning_t warning = { + .other = true, + + .address = true, .aggregate_return = false, .attribute = true, .cast_qual = false, @@ -46,6 +49,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, @@ -83,7 +89,10 @@ void set_warning_opt(const char *const opt) #define SET(y) (void)(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 */ + /* Note: this switched on a lot more warnings than gcc's -Wall */ + SET(other); + + SET(address); SET(attribute); SET(char_subscripts); SET(comment); @@ -109,6 +118,7 @@ void set_warning_opt(const char *const opt) SET(unused_value); SET(unused_variable); } + OPT("address", address); OPT("aggregate-return", aggregate_return); OPT("attribute", attribute); OPT("cast-qual", cast_qual); @@ -117,7 +127,7 @@ void set_warning_opt(const char *const opt) 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") { @@ -151,7 +161,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);