Let nondeterministic skeletons be usable with deterministic
authorAkim Demaille <akim@epita.fr>
Sun, 13 Oct 2002 18:50:40 +0000 (18:50 +0000)
committerAkim Demaille <akim@epita.fr>
Sun, 13 Oct 2002 18:50:40 +0000 (18:50 +0000)
commitea99527d23f1f4e1e4f358f9f495b2e4e26602af
tree29bd9b9d4272a95cbe853ae658b84cd07df793cf
parentf377f69fec28013c79db4efe12bbb9d48987fb2c
Let nondeterministic skeletons be usable with deterministic
tables.
With the patch, GAWK compiled by GCC without -O2 passes its test
suite using a GLR parser driven by LALR tables.  It fails with -O2
because `struct stat' gives two different answers on my machine:
88 (definition of an auto var) and later 96 (memset on this var).
Hence the stack is badly corrumpted.  The headers inclusion is to
blame: if I move the awk.h inclusion before GLR's system header
inclusion, the two struct stat have the same size.
* src/tables.c (pack_table): Always create conflict_table.
(token_actions): Always create conflict_list.
* data/glr.c (YYFLAG): Remove, unused.
ChangeLog
data/glr.c
src/output.c
src/tables.c