+ bitsetv_free (F);
+}
+
+
+/*-------------------------------------------------------------.
+| Count the number of lookaheads required for each state |
+| (NLOOKAHEADS member). Compute the total number of LA, NLA. |
+`-------------------------------------------------------------*/
+
+static void
+states_lookaheads_count (void)
+{
+ state_number_t i;
+ nLA = 0;
+
+ /* Count */
+ for (i = 0; i < nstates; i++)
+ {
+ int k;
+ int nlookaheads = 0;
+ reductions_t *rp = states[i]->reductions;
+ transitions_t *sp = states[i]->transitions;
+
+ /* We need a lookahead either to distinguish different
+ reductions (i.e., there are two or more), or to distinguish a
+ reduction from a shift. Otherwise, it is straightforward,
+ and the state is `consistent'. */
+ if (rp->num > 1
+ || (rp->num == 1 && sp->num && TRANSITION_IS_SHIFT (sp, 0)))
+ nlookaheads += rp->num;
+ else
+ states[i]->consistent = 1;
+
+ for (k = 0; k < sp->num; k++)
+ if (TRANSITION_IS_ERROR (sp, k))
+ {
+ states[i]->consistent = 0;
+ break;
+ }
+
+ states[i]->nlookaheads = nlookaheads;
+ nLA += nlookaheads;
+ }
+}
+
+
+/*--------------------------------------.
+| Initializing the lookaheads members. |
+`--------------------------------------*/
+
+static void
+states_lookaheads_initialize (void)
+{
+ state_number_t i;
+ bitsetv pLA = LA;
+ rule_t **pLArule = LArule;
+
+ /* Initialize the members LOOKAHEADS and LOOKAHEADS_RULE for each
+ state. */
+ for (i = 0; i < nstates; i++)
+ {
+ states[i]->lookaheads = pLA;
+ states[i]->lookaheads_rule = pLArule;
+ pLA += states[i]->nlookaheads;
+ pLArule += states[i]->nlookaheads;
+ }