mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-14 23:03:04 +00:00
Disable unset/unused mid-rule value warnings by default, and recognize
--warnings=midrule-values to enable them. Discussed starting at <http://lists.gnu.org/archive/html/help-bison/2006-10/msg00030.html>. * NEWS (2.3a+): Mention. * src/getargs.c, src/getargs.h (warnings_args, warnings_types, enum warnings): Add entry for midrule-values subargument. * src/reader.c (symbol_should_be_used): Don't return true just because the value is a set/used mid-rule value unless --warnings=midrule-values was specified. * tests/input.at (Unused values, Unused values before symbol declarations): Run tests with and without --warnings=midrule-values. * src/reader.c (check_and_convert_grammar): Use symbol_list_free rather than LIST_FREE directly.
This commit is contained in:
@@ -111,7 +111,8 @@ enum warnings
|
||||
{
|
||||
warnings_none = 0, /**< Issue no warnings. */
|
||||
warnings_error = 1 << 0, /**< Warnings are treated as errors. */
|
||||
warnings_yacc = 1 << 1, /**< POSIXME. */
|
||||
warnings_midrule_values = 1 << 1, /**< Unset or unused midrule values. */
|
||||
warnings_yacc = 1 << 2, /**< POSIXME. */
|
||||
warnings_all = ~warnings_error /**< All above warnings. */
|
||||
};
|
||||
/** What warnings are issued. */
|
||||
|
||||
Reference in New Issue
Block a user