mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-09 04:13:03 +00:00
* src/print.c (print_state): Separate the list of solved conflicts
from the other items. * tests/conflicts.at (Resolved SR Conflicts): Adjust.
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2002-10-13 Akim Demaille <akim@epita.fr>
|
||||
|
||||
* src/print.c (print_state): Separate the list of solved conflicts
|
||||
from the other items.
|
||||
* tests/conflicts.at (Resolved SR Conflicts): Adjust.
|
||||
|
||||
2002-10-13 Akim Demaille <akim@epita.fr>
|
||||
|
||||
Let nondeterministic skeletons be usable with deterministic
|
||||
|
||||
@@ -422,7 +422,10 @@ print_state (FILE *out, state_t *state)
|
||||
print_actions (out, state);
|
||||
if ((report_flag & report_solved_conflicts)
|
||||
&& state->solved_conflicts)
|
||||
fputs (state->solved_conflicts, out);
|
||||
{
|
||||
fputc ('\n', out);
|
||||
fputs (state->solved_conflicts, out);
|
||||
}
|
||||
}
|
||||
|
||||
/*-----------------------------------------.
|
||||
|
||||
@@ -328,6 +328,7 @@ state 5
|
||||
1 | exp OP exp . [$end, OP]
|
||||
|
||||
$default reduce using rule 1 (exp)
|
||||
|
||||
Conflict between rule 1 and token OP resolved as reduce (%left OP).
|
||||
]])
|
||||
|
||||
|
||||
Reference in New Issue
Block a user