+ state_table[rp->number]->reductions = rp;
+ }
+
+ /* Pessimization, but simplification of the code: make sure all the
+ states have a shifts, even if reduced to 0 shifts. */
+ {
+ int i;
+ for (i = 0; i < nstates; i++)
+ if (!state_table[i]->shifts)
+ state_table[i]->shifts = shifts_new (0);