]> git.saurik.com Git - bison.git/blobdiff - ChangeLog
lalr1.cc: get rid of yyparse's yystate.
[bison.git] / ChangeLog
index 39575a3549ff2db081ffa35cb3ac877971eb474d..f5da787e6b396d05e591123f050e0f9a263a2845 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,18 @@
+2009-08-19  Akim Demaille  <demaille@gostai.com>
+
+       lalr1.cc: get rid of yyparse's yystate.
+       yystate and yystack_[0].state are equal, keep only the latter.
+       The former was also used as a temporary variable to compute the
+       post-reduction state.  Move this computation into an auxiliary
+       function.
+
+       * data/glr.c (yyLRgotoState): Fuse variable definition and first
+       assignment.
+       * data/lalr1.cc (yy_lr_goto_state_): New.
+       (yyparse): Use it.
+       Replace remaining uses of yystate by yystate_[0].state.
+       Remove the former.
+
 2009-08-19  Akim Demaille  <demaille@gostai.com>
 
        lalr1.cc: destroy $$ when YYERROR is called.