]> git.saurik.com Git - bison.git/blobdiff - src/output.c
* src/lalr.h (lookaheads): Removed array, which contents is now
[bison.git] / src / output.c
index 8abbd5d2cec526923969198d4fc710f12faae93f..3a7f08177fbc3463c7c8d2095d28314ae16b5126 100644 (file)
@@ -348,8 +348,8 @@ action_row (int state)
        {
          /* loop over all the rules available here which require
             lookahead */
-         m = lookaheads[state];
-         n = lookaheads[state + 1];
+         m = state_table[state].lookaheads;
+         n = state_table[state + 1].lookaheads;
 
          for (i = n - 1; i >= m; i--)
            {
@@ -928,7 +928,6 @@ output_actions (void)
   token_actions ();
   free_shifts ();
   free_reductions ();
-  XFREE (lookaheads);
   XFREE (LA);
   XFREE (LAruleno);