]>
Commit | Line | Data |
---|---|---|
a870c567 AD |
1 | 2001-12-10 Akim Demaille <akim@epita.fr> |
2 | ||
3 | Clean up GCC warnings. | |
4 | ||
5 | * src/reader.c (copy_action): `buf' is not used. | |
6 | (parse_skel_decl): Be static. | |
7 | * src/muscle_tab.c (mhash1, mhash2, muscle_insert): Preserve `const'. | |
8 | * src/options.h (create_long_option_table): Have a real prototype. | |
9 | * lib/hash.c, lib/hash.h (hash_insert, hash_insert_at, hash_delete) | |
10 | (hash_delete_at): Return const void *. | |
11 | Adjust casts to preserve the const. | |
12 | ||
80df8768 AD |
13 | 2001-12-10 Akim Demaille <akim@epita.fr> |
14 | ||
15 | * configure.in: Require 2.52g. | |
16 | M4 is not needed, but AUTOM4TE is. | |
17 | * m4/m4.m4: Remove. | |
18 | * tests/Makefile.am: Adjust. | |
19 | ||
20 | ||
f693ad14 AD |
21 | 2001-12-10 Akim Demaille <akim@epita.fr> |
22 | ||
23 | One structure for states is enough, even though theoretically | |
24 | there are LR(0) states and LALR(1) states. | |
25 | ||
26 | * src/lalr.h (state_t): Remove. | |
27 | (state_table): Be state_t **, not state_t *. | |
28 | * src/state.h (core, CORE_ALLOC): Rename as... | |
29 | (state_t, STATE_ALLOC): this. | |
30 | Add the LALR(1) members: shifts, reductions, errs. | |
31 | * src/LR0.c (state_table): Rename as... | |
32 | (state_hash): this, to avoid name clashes with the global | |
33 | `state_table'. | |
34 | * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c | |
35 | * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust. | |
36 | ||
37 | ||
74ffbcb6 AD |
38 | 2001-12-10 Akim Demaille <akim@epita.fr> |
39 | ||
40 | Bison dumps core on bash.y. | |
41 | Reported by Pascal Bart. | |
42 | ||
43 | * src/warshall.c (bitmatrix_print): New. | |
44 | (TC): Use it. | |
45 | When performing a transitive closure R(i, j) && R(j, k) => R(i, k), | |
46 | j must be the outer loop. | |
47 | * tests/regression.at (Broken Closure): New. | |
48 | ||
07708e19 AD |
49 | 2001-12-05 Akim Demaille <akim@epita.fr> |
50 | ||
51 | * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and | |
52 | its argument. | |
53 |