* 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

@@ -178,7 +178,7 @@ print_actions (int state, const char *node_name, struct obstack *node_obstack)
obstack_sgrow (node_obstack, "\\n");
}
if (consistent[state] && redp)
if (state_table[state].consistent && redp)
{
rule = redp->rules[0];
symbol = rlhs[rule];