]> git.saurik.com Git - bison.git/commit - data/lalr1.cc
Check for unrecognized %define variables similar to checking for
authorJoel E. Denny <jdenny@ces.clemson.edu>
Sun, 7 Jan 2007 07:50:27 +0000 (07:50 +0000)
committerJoel E. Denny <jdenny@ces.clemson.edu>
Sun, 7 Jan 2007 07:50:27 +0000 (07:50 +0000)
commit7eb8a0bcca2b3897f4a2045cd36250191d4e6aa0
tree6df4e6f906f8d4c651ff722dbb65fc7d38e6a7c1
parent3fc65ead4d318a3dbde92afab9956af14dc73b42
Check for unrecognized %define variables similar to checking for
unrecognized %code qualifiers.  Check for redefined %define variables.
* data/bison.m4 (b4_check_for_unrecognized_names): New macro that
generalizes...
(b4_check_percent_code_qualifiers): ... this, which now wraps it.
(b4_check_percent_define_variables): New, also wraps it.
* data/glr.c: Unless glr.cc is wrapping glr.c, declare no valid %define
variables using b4_check_percent_define_variables.
* data/glr.cc, data/lalr1.cc: Declare the valid %define variables as
all those exercised in the test suite and all those listed in the
`Default values' section of c++.m4.  Are there others?
* data/push.c, data/yacc.c: Declare no valid %define variables.
* src/muscle_tab.c, src/muscle_tab.h (muscle_find_const): New function,
similar to muscle_find, but it works even when the muscle stores a
const value.
(muscle_grow_used_name_list): New function for constructing the used
name list muscles that b4_check_for_unrecognized_names requires.
* src/parse-gram.y (prologue_declaration): Warn if a variable is
%define'd more than once.  Define the b4_used_percent_define_variables
muscle with muscle_grow_used_name_list.
(grammar_declaration): Abbreviate %code code with
muscle_grow_used_name_list.
* tests/input.at (%define errors): New.
13 files changed:
ChangeLog
data/bison.m4
data/glr.c
data/glr.cc
data/lalr1.cc
data/push.c
data/yacc.c
src/muscle_tab.c
src/muscle_tab.h
src/parse-gram.c
src/parse-gram.h
src/parse-gram.y
tests/input.at