mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-22 02:33:03 +00:00
* src/symtab.c (symbol_new): Initialize the `printer' member.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2002-06-30 Akim Demaille <akim@epita.fr>
|
||||||
|
|
||||||
|
* src/symtab.c (symbol_new): Initialize the `printer' member.
|
||||||
|
|
||||||
|
|
||||||
2002-06-30 Akim Demaille <akim@epita.fr>
|
2002-06-30 Akim Demaille <akim@epita.fr>
|
||||||
|
|
||||||
* src/LR0.c (save_reductions): Remove, replaced by...
|
* src/LR0.c (save_reductions): Remove, replaced by...
|
||||||
|
|||||||
@@ -51,11 +51,13 @@ symbol_new (const char *tag, location_t location)
|
|||||||
|
|
||||||
res->type_name = NULL;
|
res->type_name = NULL;
|
||||||
res->destructor = NULL;
|
res->destructor = NULL;
|
||||||
|
res->printer = NULL;
|
||||||
|
|
||||||
res->number = NUMBER_UNDEFINED;
|
res->number = NUMBER_UNDEFINED;
|
||||||
res->prec = 0;
|
res->prec = 0;
|
||||||
res->assoc = right_assoc;
|
res->assoc = right_assoc;
|
||||||
res->user_token_number = USER_NUMBER_UNDEFINED;
|
res->user_token_number = USER_NUMBER_UNDEFINED;
|
||||||
|
|
||||||
res->alias = NULL;
|
res->alias = NULL;
|
||||||
res->class = unknown_sym;
|
res->class = unknown_sym;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user