From: Akim Demaille Date: Mon, 17 Dec 2001 17:32:20 +0000 (+0000) Subject: * src/conflicts.c (print_reductions): Formatting changes. X-Git-Tag: before-m4-back-end~114 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/be750e4c49acede25b7e0cd3a2f5b58e759583fd?ds=inline * src/conflicts.c (print_reductions): Formatting changes. --- diff --git a/ChangeLog b/ChangeLog index 30d62e86..47dc83f3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-12-17 Akim Demaille + + * src/conflicts.c (print_reductions): Formatting changes. + + 2001-12-17 Akim Demaille * src/conflicts.c (flush_shift): Also adjust lookaheadset. diff --git a/src/conflicts.c b/src/conflicts.c index cbd002d5..f10c36b3 100644 --- a/src/conflicts.c +++ b/src/conflicts.c @@ -414,16 +414,15 @@ print_reductions (FILE *out, int state) { int i; int j; - int m; - int n; - shifts *shiftp; - errs *errp; + int m = state_table[state]->lookaheads; + int n = state_table[state + 1]->lookaheads; + shifts *shiftp = state_table[state]->shifts; + errs *errp = state_table[state]->errs; int nodefault = 0; for (i = 0; i < tokensetsize; i++) shiftset[i] = 0; - shiftp = state_table[state]->shifts; for (i = 0; i < shiftp->nshifts && SHIFT_IS_SHIFT (shiftp, i); i++) if (!SHIFT_IS_DISABLED (shiftp, i)) { @@ -434,15 +433,11 @@ print_reductions (FILE *out, int state) SETBIT (shiftset, SHIFT_SYMBOL (shiftp, i)); } - errp = state_table[state]->errs; if (errp) for (i = 0; i < errp->nerrs; i++) if (errp->errs[i]) SETBIT (shiftset, errp->errs[i]); - m = state_table[state]->lookaheads; - n = state_table[state + 1]->lookaheads; - if (n - m == 1 && !nodefault) { int k;