]>
Commit | Line | Data |
---|---|---|
f693ad14 AD |
1 | 2001-12-10 Akim Demaille <akim@epita.fr> |
2 | ||
3 | One structure for states is enough, even though theoretically | |
4 | there are LR(0) states and LALR(1) states. | |
5 | ||
6 | * src/lalr.h (state_t): Remove. | |
7 | (state_table): Be state_t **, not state_t *. | |
8 | * src/state.h (core, CORE_ALLOC): Rename as... | |
9 | (state_t, STATE_ALLOC): this. | |
10 | Add the LALR(1) members: shifts, reductions, errs. | |
11 | * src/LR0.c (state_table): Rename as... | |
12 | (state_hash): this, to avoid name clashes with the global | |
13 | `state_table'. | |
14 | * src/print_graph.c, src/LR0.c, src/LR0.h, src/conflicts.c | |
15 | * src/lalr.c, src/lalr.h, src/output.c, src/print.c: Adjust. | |
16 | ||
17 | ||
74ffbcb6 AD |
18 | 2001-12-10 Akim Demaille <akim@epita.fr> |
19 | ||
20 | Bison dumps core on bash.y. | |
21 | Reported by Pascal Bart. | |
22 | ||
23 | * src/warshall.c (bitmatrix_print): New. | |
24 | (TC): Use it. | |
25 | When performing a transitive closure R(i, j) && R(j, k) => R(i, k), | |
26 | j must be the outer loop. | |
27 | * tests/regression.at (Broken Closure): New. | |
28 | ||
07708e19 AD |
29 | 2001-12-05 Akim Demaille <akim@epita.fr> |
30 | ||
31 | * tests/atlocal.in (CPPFLAGS): Do not leave a space between -I and | |
32 | its argument. | |
33 |