mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-17 16:23:04 +00:00
* src/LR0.c (allocate_itemsets): Don't loop over ritem: loop over
the RHS of the rules. * src/output.c (output_gram): Likewise.
This commit is contained in:
@@ -68,7 +68,8 @@ static state_t **state_hash = NULL;
|
||||
static void
|
||||
allocate_itemsets (void)
|
||||
{
|
||||
int i;
|
||||
int i, r;
|
||||
short *rhsp;
|
||||
|
||||
/* Count the number of occurrences of all the symbols in RITEMS.
|
||||
Note that useless productions (hence useless nonterminals) are
|
||||
@@ -77,11 +78,11 @@ allocate_itemsets (void)
|
||||
int count = 0;
|
||||
short *symbol_count = XCALLOC (short, nsyms + nuseless_nonterminals);
|
||||
|
||||
for (i = 0; i < nritems; ++i)
|
||||
if (ritem[i] >= 0)
|
||||
for (r = 1; r < nrules + 1; ++r)
|
||||
for (rhsp = rules[r].rhs; *rhsp >= 0; ++rhsp)
|
||||
{
|
||||
count++;
|
||||
symbol_count[ritem[i]]++;
|
||||
symbol_count[*rhsp]++;
|
||||
}
|
||||
|
||||
/* See comments before new_itemsets. All the vectors of items
|
||||
|
||||
Reference in New Issue
Block a user