]> git.saurik.com Git - bison.git/blobdiff - src/state.h
(yytname): Do not assume that the user defines YYDEBUG to a properly
[bison.git] / src / state.h
index d505565ac8d83c72131b11f923c5c97c484b6b3f..a31af20bcd675750678bca2a7fe6dd4bb1323771 100644 (file)
@@ -95,8 +95,6 @@
 
 typedef struct shifts
 {
-  struct shifts *next;
-  short number;
   short nshifts;
   short shifts[1];
 } shifts;
@@ -191,7 +189,9 @@ typedef struct state_s
   char consistent;
 
   /* Used in LALR, not LR(0). */
-  short lookaheads;
+  /* Pseudo pointer into LA. */
+  short lookaheadsp;
+  int nlookaheads;
 
   /* Its items. */
   short nitems;