mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-09 12:23:04 +00:00
* src/conflicts.c (err_table): Remove.
(resolve_sr_conflict): Adjust. * src/lalr.h (state_t.reduction_table, state_t.shift_table): Rename as... (state_t.reductions, state_t.shifts): this.
This commit is contained in:
@@ -98,9 +98,9 @@ print_actions (FILE *out, int state)
|
||||
{
|
||||
int i;
|
||||
|
||||
shifts *shiftp = state_table[state].shift_table;
|
||||
reductions *redp = state_table[state].reduction_table;
|
||||
errs *errp = err_table[state];
|
||||
shifts *shiftp = state_table[state].shifts;
|
||||
reductions *redp = state_table[state].reductions;
|
||||
errs *errp = state_table[state].errs;
|
||||
|
||||
if (!shiftp->nshifts && !redp)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user