* src/lalr.h (consistent): Removed array, which contents is now

member of...
(state_t): this structure.
* src/output.c, src/lalr.c, src/print_graph.c, src/conflicts.c:
Adjust.
This commit is contained in:
Akim Demaille
2001-11-19 09:10:30 +00:00
parent cfc3acf242
commit d80a86e0b5
7 changed files with 20 additions and 16 deletions

View File

@@ -165,7 +165,7 @@ print_actions (FILE *out, int state)
fputc ('\n', out);
}
if (consistent[state] && redp)
if (state_table[state].consistent && redp)
{
rule = redp->rules[0];
symbol = rlhs[rule];