mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-27 05:03:07 +00:00
* src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
* src/conflicts.c (conflicts_total_count): `i' is unsigned, to pacify GCC. * src/output.c (save_row): Initialize all the variables to pacify GCC. (merger_output): static.
This commit is contained in:
@@ -1,3 +1,11 @@
|
||||
2002-06-28 Akim Demaille <akim@epita.fr>
|
||||
|
||||
* src/reader.h: s/grammer_current_rule_merge_set/grammar_.../.
|
||||
* src/conflicts.c (conflicts_total_count): `i' is unsigned, to
|
||||
pacify GCC.
|
||||
* src/output.c (save_row): Initialize all the variables to pacify GCC.
|
||||
(merger_output): static.
|
||||
|
||||
2002-06-27 Paul Hilfinger <Hilfinger@CS.Berkeley.EDU>
|
||||
|
||||
Accumulated changelog for new GLR parsing features.
|
||||
|
||||
@@ -432,7 +432,7 @@ conflicts_output (FILE *out)
|
||||
int
|
||||
conflicts_total_count (void)
|
||||
{
|
||||
int i;
|
||||
unsigned i;
|
||||
int count;
|
||||
|
||||
/* Conflicts by state. */
|
||||
|
||||
@@ -554,10 +554,10 @@ save_row (int state)
|
||||
{
|
||||
int i;
|
||||
int count;
|
||||
short *sp;
|
||||
short *sp1;
|
||||
short *sp2;
|
||||
unsigned int *sp3;
|
||||
short *sp = NULL;
|
||||
short *sp1 = NULL;
|
||||
short *sp2 = NULL;
|
||||
unsigned int *sp3 = NULL;
|
||||
|
||||
count = 0;
|
||||
for (i = 0; i < ntokens; i++)
|
||||
|
||||
@@ -80,7 +80,7 @@ void grammar_current_rule_prec_set PARAMS ((symbol_t *precsym,
|
||||
location_t l));
|
||||
void grammar_current_rule_dprec_set PARAMS ((int dprec,
|
||||
location_t l));
|
||||
void grammer_current_rule_merge_set PARAMS ((const char* name,
|
||||
void grammar_current_rule_merge_set PARAMS ((const char* name,
|
||||
location_t l));
|
||||
|
||||
void grammar_current_rule_symbol_append PARAMS ((symbol_t *symbol,
|
||||
|
||||
Reference in New Issue
Block a user