mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-10 04:43:03 +00:00
* src/derives.c (print_derives): Fix and enrich.
* src/closure.c (print_fderives): Likewise.
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2001-11-19 Akim Demaille <akim@epita.fr>
|
||||
|
||||
* src/derives.c (print_derives): Fix and enrich.
|
||||
* src/closure.c (print_fderives): Likewise.
|
||||
|
||||
|
||||
2001-11-19 Akim Demaille <akim@epita.fr>
|
||||
|
||||
* src/closure.c (itemsetend): Remove, replaced with...
|
||||
|
||||
@@ -100,7 +100,13 @@ print_fderives (void)
|
||||
|
||||
for (j = 0; j <= nrules; j++)
|
||||
if (BITISSET (rp, j))
|
||||
fprintf (stderr, "\t\t%d (%s)\n", j, tags[j]);
|
||||
{
|
||||
short *rhsp;
|
||||
fprintf (stderr, "\t\t%d:", j);
|
||||
for (rhsp = ritem + rule_table[j].rhs; *rhsp > 0; ++rhsp)
|
||||
fprintf (stderr, " %s", tags[*rhsp]);
|
||||
fputc ('\n', stderr);
|
||||
}
|
||||
}
|
||||
fprintf (stderr, "\n\n");
|
||||
}
|
||||
|
||||
@@ -38,15 +38,21 @@ static void
|
||||
print_derives (void)
|
||||
{
|
||||
int i;
|
||||
short *sp;
|
||||
|
||||
fputs ("DERIVES\n", stderr);
|
||||
|
||||
for (i = ntokens; i < nsyms; i++)
|
||||
{
|
||||
short *sp;
|
||||
fprintf (stderr, "\t%s derives\n", tags[i]);
|
||||
for (sp = derives[i]; *sp > 0; sp++)
|
||||
fprintf (stderr, "\t\t%d (%s)\n", *sp, tags[*sp]);
|
||||
{
|
||||
short *rhsp;
|
||||
fprintf (stderr, "\t\t%d:", *sp);
|
||||
for (rhsp = ritem + rule_table[*sp].rhs; *rhsp > 0; ++rhsp)
|
||||
fprintf (stderr, " %s", tags[*rhsp]);
|
||||
fputc ('\n', stderr);
|
||||
}
|
||||
}
|
||||
|
||||
fputs ("\n\n", stderr);
|
||||
|
||||
Reference in New Issue
Block a user