mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-12 13:53:03 +00:00
* src/closure.c (print_firsts, print_fderives, closure):
Use BITSET_EXECUTE. * src/lalr.c (lookaheads_print): Likewise. * src/state.c (state_rule_lookaheads_print): Likewise. * src/print_graph.c (print_core): Likewise. * src/print.c (print_reductions): Likewise. * src/output.c (action_row): Likewise. Use SHIFT_IS_DISABLED, SHIFT_IS_SHIFT and SHIFT_SYMBOL.
This commit is contained in:
14
src/state.c
14
src/state.c
@@ -198,22 +198,24 @@ state_rule_lookaheads_print (state_t *state, rule_t *rule, FILE *out)
|
||||
int nlookaheads = 0;
|
||||
/* Count the number of lookaheads corresponding to this rule. */
|
||||
for (j = 0; j < state->nlookaheads; ++j)
|
||||
for (k = 0; k < ntokens; ++k)
|
||||
if (bitset_test (state->lookaheads[j], k)
|
||||
&& state->lookaheads_rule[j]->number == rule->number)
|
||||
BITSET_EXECUTE (state->lookaheads[j], 0, k,
|
||||
{
|
||||
if (state->lookaheads_rule[j]->number == rule->number)
|
||||
nlookaheads++;
|
||||
});
|
||||
|
||||
/* Print them if there are. */
|
||||
if (nlookaheads)
|
||||
{
|
||||
fprintf (out, " [");
|
||||
for (j = 0; j < state->nlookaheads; ++j)
|
||||
for (k = 0; k < ntokens; ++k)
|
||||
if (bitset_test (state->lookaheads[j], k)
|
||||
&& state->lookaheads_rule[j]->number == rule->number)
|
||||
BITSET_EXECUTE (state->lookaheads[j], 0, k,
|
||||
{
|
||||
if (state->lookaheads_rule[j]->number == rule->number)
|
||||
fprintf (out, "%s%s",
|
||||
symbol_tag_get (symbols[k]),
|
||||
--nlookaheads ? ", " : "");
|
||||
});
|
||||
fprintf (out, "]");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user