]> git.saurik.com Git - bison.git/blobdiff - src/print.c
* src/lalr.h (reduction_table, shift_table): Removed arrays, which
[bison.git] / src / print.c
index a52d660a0c37639ea26730fce7417f78a99aec93..cbc0ceb2db7751ee30cbd4015df9a88cfedea065 100644 (file)
@@ -102,8 +102,8 @@ print_actions (FILE *out, int state)
   reductions *redp;
   int rule;
 
-  shiftp = shift_table[state];
-  redp = reduction_table[state];
+  shiftp = state_table[state].shift_table;
+  redp = state_table[state].reduction_table;
   errp = err_table[state];
 
   if (!shiftp && !redp)