* src/gram.c, src/gram.h (sprec, sassoc): Remove.

Adjust all users to use symbols[i]->prec or ->assoc.
This commit is contained in:
Akim Demaille
2001-12-29 14:19:13 +00:00
parent ad949da96b
commit 5a670b1ed9
5 changed files with 9 additions and 11 deletions

View File

@@ -122,7 +122,7 @@ resolve_sr_conflict (state_t *state, int lookahead)
For right association, keep only the shift.
For nonassociation, keep neither. */
switch (sassoc[i])
switch (symbols[i]->assoc)
{
case right_assoc:
log_resolution (state, lookahead, i, _("shift"));