X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/afbb696d1936dd21929ce156868b7c5ebd88b544..00baeeac7e65451b8fde8f83b53f60a9ebb215fd:/ChangeLog diff --git a/ChangeLog b/ChangeLog index d3f16205..ca598cba 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,9 +1,33 @@ +2004-12-07 Paul Eggert + + * src/lalr.h (GOTO_NUMBER_MAXIMUM): New macro. + * src/lalr.c (set_goto_map): Don't allow ngotos to equal + GOTO_NUMBER_MAXIMUM, since we occasionally compute + ngotos + 1 without checking for overflow. + (build_relations): Use END_NODE, not -1, to denote end of edges. + * src/lalr.c (set_goto_map, map_goto, initialize_F, add_loopback_edge, + build_relations): Use goto_number, not int, for goto numbers. + * src/tables.c (save_column, default_goto): Likewise. + +2004-11-23 Akim Demaille + + * data/lalr1.cc (YYSTYPE): Define it as is done for C, instead + of #defining from yystype. + Don't typedef yystype, C++ does not need it. + This lets it possible to forward declare it as union. + +2004-11-23 Paul Eggert + + * bootstrap (gnulib_modules): Add extensions. + Problem reported by Jim Meyering. + 2004-11-22 Paul Eggert * src/LR0.c, src/closure.c, src/derives.c, src/gram.c, src/lalr.c, src/nullable.c, src/relation.c, src/scan-skel.l, src/system.h, src/tables.c: XFREE -> free, to accommodate recent change to gnulib xalloc.h. + Problem reported by Jim Meyering. 2004-11-17 Akim Demaille