1 /* Symbol table manager for Bison.
3 Copyright (C) 1984, 1989, 2000-2002, 2004-2012 Free Software
6 This file is part of Bison, the GNU Compiler Compiler.
8 This program is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
31 /*-------------------------------------------------------------------.
32 | Symbols sorted by tag. Allocated by the first invocation of |
33 | symbols_do, after which no more symbols should be created. |
34 `-------------------------------------------------------------------*/
36 static symbol
**symbols_sorted
= NULL
;
38 /*------------------------.
39 | Distinguished symbols. |
40 `------------------------*/
42 symbol
*errtoken
= NULL
;
43 symbol
*undeftoken
= NULL
;
44 symbol
*endtoken
= NULL
;
45 symbol
*accept
= NULL
;
46 symbol
*startsymbol
= NULL
;
47 location startsymbol_location
;
49 /*---------------------------------------.
50 | Default %destructor's and %printer's. |
51 `---------------------------------------*/
53 static code_props default_tagged_destructor
= CODE_PROPS_NONE_INIT
;
54 static code_props default_tagless_destructor
= CODE_PROPS_NONE_INIT
;
55 static code_props default_tagged_printer
= CODE_PROPS_NONE_INIT
;
56 static code_props default_tagless_printer
= CODE_PROPS_NONE_INIT
;
58 /*---------------------------------.
59 | Create a new symbol, named TAG. |
60 `---------------------------------*/
63 symbol_new (uniqstr tag
, location loc
)
65 symbol
*res
= xmalloc (sizeof *res
);
69 /* If the tag is not a string (starts with a double quote), check
70 that it is valid for Yacc. */
71 if (tag
[0] != '\"' && tag
[0] != '\'' && mbschr (tag
, '-'))
72 yacc_at (loc
, _("POSIX Yacc forbids dashes in symbol names: %s"),
78 res
->type_name
= NULL
;
79 code_props_none_init (&res
->destructor
);
80 code_props_none_init (&res
->printer
);
82 res
->number
= NUMBER_UNDEFINED
;
84 res
->assoc
= undef_assoc
;
85 res
->user_token_number
= USER_NUMBER_UNDEFINED
;
88 res
->class = unknown_sym
;
89 res
->declared
= false;
91 if (nsyms
== SYMBOL_NUMBER_MAXIMUM
)
92 fatal (_("too many symbols in input grammar (limit is %d)"),
93 SYMBOL_NUMBER_MAXIMUM
);
98 /*----------------------------------------.
99 | Create a new semantic type, named TAG. |
100 `----------------------------------------*/
102 static semantic_type
*
103 semantic_type_new (uniqstr tag
)
105 semantic_type
*res
= xmalloc (sizeof *res
);
107 uniqstr_assert (tag
);
109 code_props_none_init (&res
->destructor
);
110 code_props_none_init (&res
->printer
);
120 #define SYMBOL_ATTR_PRINT(Attr) \
122 fprintf (f, " %s { %s }", #Attr, s->Attr)
124 #define SYMBOL_CODE_PRINT(Attr) \
126 fprintf (f, " %s { %s }", #Attr, s->Attr.code)
129 symbol_print (symbol
*s
, FILE *f
)
133 fprintf (f
, "\"%s\"", s
->tag
);
134 SYMBOL_ATTR_PRINT (type_name
);
135 SYMBOL_CODE_PRINT (destructor
);
136 SYMBOL_CODE_PRINT (printer
);
139 fprintf (f
, "<NULL>");
142 #undef SYMBOL_ATTR_PRINT
143 #undef SYMBOL_CODE_PRINT
146 /*----------------------------------.
147 | Whether S is a valid identifier. |
148 `----------------------------------*/
151 is_identifier (uniqstr s
)
153 static char const alphanum
[26 + 26 + 1 + 10] =
154 "abcdefghijklmnopqrstuvwxyz"
155 "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
158 if (!s
|| ! memchr (alphanum
, *s
, sizeof alphanum
- 10))
161 if (! memchr (alphanum
, *s
, sizeof alphanum
))
167 /*-----------------------------------------------.
168 | Get the identifier associated to this symbol. |
169 `-----------------------------------------------*/
171 symbol_id_get (symbol
const *sym
)
173 aver (sym
->user_token_number
!= USER_NUMBER_HAS_STRING_ALIAS
);
176 return is_identifier (sym
->tag
) ? sym
->tag
: 0;
180 /*------------------------------------------------------------------.
181 | Complain that S's WHAT is redeclared at SECOND, and was first set |
183 `------------------------------------------------------------------*/
186 symbol_redeclaration (symbol
*s
, const char *what
, location first
,
189 complain_at (second
, _("%s redeclaration for %s"), what
, s
->tag
);
190 complain_at (first
, _("previous declaration"));
194 semantic_type_redeclaration (semantic_type
*s
, const char *what
, location first
,
197 complain_at (second
, _("%s redeclaration for <%s>"), what
, s
->tag
);
198 complain_at (first
, _("previous declaration"));
203 /*-----------------------------------------------------------------.
204 | Set the TYPE_NAME associated with SYM. Does nothing if passed 0 |
206 `-----------------------------------------------------------------*/
209 symbol_type_set (symbol
*sym
, uniqstr type_name
, location loc
)
214 symbol_redeclaration (sym
, "%type", sym
->type_location
, loc
);
215 uniqstr_assert (type_name
);
216 sym
->type_name
= type_name
;
217 sym
->type_location
= loc
;
221 /*-----------------------------------------.
222 | Set the DESTRUCTOR associated with SYM. |
223 `-----------------------------------------*/
226 symbol_destructor_set (symbol
*sym
, code_props
const *destructor
)
228 if (sym
->destructor
.code
)
229 symbol_redeclaration (sym
, "%destructor", sym
->destructor
.location
,
230 destructor
->location
);
231 sym
->destructor
= *destructor
;
234 /*------------------------------------------.
235 | Set the DESTRUCTOR associated with TYPE. |
236 `------------------------------------------*/
239 semantic_type_destructor_set (semantic_type
*type
,
240 code_props
const *destructor
)
242 if (type
->destructor
.code
)
243 semantic_type_redeclaration (type
, "%destructor",
244 type
->destructor
.location
,
245 destructor
->location
);
246 type
->destructor
= *destructor
;
249 /*---------------------------------------.
250 | Get the computed %destructor for SYM. |
251 `---------------------------------------*/
254 symbol_destructor_get (symbol
const *sym
)
256 /* Per-symbol %destructor. */
257 if (sym
->destructor
.code
)
258 return &sym
->destructor
;
260 /* Per-type %destructor. */
263 code_props
const *destructor
=
264 &semantic_type_get (sym
->type_name
)->destructor
;
265 if (destructor
->code
)
269 /* Apply default %destructor's only to user-defined symbols. */
270 if (sym
->tag
[0] == '$' || sym
== errtoken
)
271 return &code_props_none
;
274 return &default_tagged_destructor
;
275 return &default_tagless_destructor
;
278 /*--------------------------------------.
279 | Set the PRINTER associated with SYM. |
280 `--------------------------------------*/
283 symbol_printer_set (symbol
*sym
, code_props
const *printer
)
285 if (sym
->printer
.code
)
286 symbol_redeclaration (sym
, "%printer",
287 sym
->printer
.location
, printer
->location
);
288 sym
->printer
= *printer
;
291 /*---------------------------------------.
292 | Set the PRINTER associated with TYPE. |
293 `---------------------------------------*/
296 semantic_type_printer_set (semantic_type
*type
, code_props
const *printer
)
298 if (type
->printer
.code
)
299 semantic_type_redeclaration (type
, "%printer",
300 type
->printer
.location
, printer
->location
);
301 type
->printer
= *printer
;
304 /*------------------------------------.
305 | Get the computed %printer for SYM. |
306 `------------------------------------*/
309 symbol_printer_get (symbol
const *sym
)
311 /* Per-symbol %printer. */
312 if (sym
->printer
.code
)
313 return &sym
->printer
;
315 /* Per-type %printer. */
318 code_props
const *printer
= &semantic_type_get (sym
->type_name
)->printer
;
323 /* Apply the default %printer only to user-defined symbols. */
324 if (sym
->tag
[0] == '$' || sym
== errtoken
)
325 return &code_props_none
;
328 return &default_tagged_printer
;
329 return &default_tagless_printer
;
332 /*-----------------------------------------------------------------.
333 | Set the PRECEDENCE associated with SYM. Does nothing if invoked |
334 | with UNDEF_ASSOC as ASSOC. |
335 `-----------------------------------------------------------------*/
338 symbol_precedence_set (symbol
*sym
, int prec
, assoc a
, location loc
)
340 if (a
!= undef_assoc
)
343 symbol_redeclaration (sym
, assoc_to_string (a
), sym
->prec_location
,
347 sym
->prec_location
= loc
;
350 /* Only terminals have a precedence. */
351 symbol_class_set (sym
, token_sym
, loc
, false);
355 /*------------------------------------.
356 | Set the CLASS associated with SYM. |
357 `------------------------------------*/
360 symbol_class_set (symbol
*sym
, symbol_class
class, location loc
, bool declaring
)
362 if (sym
->class != unknown_sym
&& sym
->class != class)
364 complain_at (loc
, _("symbol %s redefined"), sym
->tag
);
365 sym
->declared
= false;
368 if (class == nterm_sym
&& sym
->class != nterm_sym
)
369 sym
->number
= nvars
++;
370 else if (class == token_sym
&& sym
->number
== NUMBER_UNDEFINED
)
371 sym
->number
= ntokens
++;
378 warn_at (loc
, _("symbol %s redeclared"), sym
->tag
);
379 sym
->declared
= true;
384 /*------------------------------------------------.
385 | Set the USER_TOKEN_NUMBER associated with SYM. |
386 `------------------------------------------------*/
389 symbol_user_token_number_set (symbol
*sym
, int user_token_number
, location loc
)
391 int *user_token_numberp
;
393 if (sym
->user_token_number
!= USER_NUMBER_HAS_STRING_ALIAS
)
394 user_token_numberp
= &sym
->user_token_number
;
396 user_token_numberp
= &sym
->alias
->user_token_number
;
397 if (*user_token_numberp
!= USER_NUMBER_UNDEFINED
398 && *user_token_numberp
!= user_token_number
)
399 complain_at (loc
, _("redefining user token number of %s"), sym
->tag
);
401 *user_token_numberp
= user_token_number
;
402 /* User defined $end token? */
403 if (user_token_number
== 0)
406 /* It is always mapped to 0, so it was already counted in
408 if (endtoken
->number
!= NUMBER_UNDEFINED
)
410 endtoken
->number
= 0;
415 /*----------------------------------------------------------.
416 | If SYM is not defined, report an error, and consider it a |
418 `----------------------------------------------------------*/
421 symbol_check_defined (symbol
*sym
)
423 if (sym
->class == unknown_sym
)
427 _("symbol %s is used, but is not defined as a token and has no rules"),
429 sym
->class = nterm_sym
;
430 sym
->number
= nvars
++;
437 symbol_check_defined_processor (void *sym
, void *null ATTRIBUTE_UNUSED
)
439 return symbol_check_defined (sym
);
444 symbol_make_alias (symbol
*sym
, symbol
*str
, location loc
)
447 warn_at (loc
, _("symbol `%s' used more than once as a literal string"),
450 warn_at (loc
, _("symbol `%s' given more than one literal string"),
454 str
->class = token_sym
;
455 str
->user_token_number
= sym
->user_token_number
;
456 sym
->user_token_number
= USER_NUMBER_HAS_STRING_ALIAS
;
459 str
->number
= sym
->number
;
460 symbol_type_set (str
, sym
->type_name
, loc
);
465 /*---------------------------------------------------------.
466 | Check that THIS, and its alias, have same precedence and |
468 `---------------------------------------------------------*/
471 symbol_check_alias_consistency (symbol
*this)
474 symbol
*str
= this->alias
;
476 /* Check only the symbol in the symbol-string pair. */
478 && this->user_token_number
== USER_NUMBER_HAS_STRING_ALIAS
))
481 if (str
->type_name
!= sym
->type_name
)
484 symbol_type_set (sym
, str
->type_name
, str
->type_location
);
486 symbol_type_set (str
, sym
->type_name
, sym
->type_location
);
490 if (str
->destructor
.code
|| sym
->destructor
.code
)
492 if (str
->destructor
.code
)
493 symbol_destructor_set (sym
, &str
->destructor
);
495 symbol_destructor_set (str
, &sym
->destructor
);
498 if (str
->printer
.code
|| sym
->printer
.code
)
500 if (str
->printer
.code
)
501 symbol_printer_set (sym
, &str
->printer
);
503 symbol_printer_set (str
, &sym
->printer
);
506 if (sym
->prec
|| str
->prec
)
509 symbol_precedence_set (sym
, str
->prec
, str
->assoc
,
512 symbol_precedence_set (str
, sym
->prec
, sym
->assoc
,
518 symbol_check_alias_consistency_processor (void *this,
519 void *null ATTRIBUTE_UNUSED
)
521 symbol_check_alias_consistency (this);
526 /*-------------------------------------------------------------------.
527 | Assign a symbol number, and write the definition of the token name |
528 | into FDEFINES. Put in SYMBOLS. |
529 `-------------------------------------------------------------------*/
532 symbol_pack (symbol
*this)
534 aver (this->number
!= NUMBER_UNDEFINED
);
535 if (this->class == nterm_sym
)
536 this->number
+= ntokens
;
537 else if (this->user_token_number
== USER_NUMBER_HAS_STRING_ALIAS
)
540 symbols
[this->number
] = this;
545 symbol_pack_processor (void *this, void *null ATTRIBUTE_UNUSED
)
547 return symbol_pack (this);
552 user_token_number_redeclaration (int num
, symbol
*first
, symbol
*second
)
554 /* User token numbers are not assigned during the parsing, but in a
555 second step, via a traversal of the symbol table sorted on tag.
557 However, error messages make more sense if we keep the first
558 declaration first. */
559 if (location_cmp (first
->location
, second
->location
) > 0)
565 complain_at (second
->location
,
566 _("user token number %d redeclaration for %s"),
568 complain_at (first
->location
, _("previous declaration for %s"),
572 /*--------------------------------------------------.
573 | Put THIS in TOKEN_TRANSLATIONS if it is a token. |
574 `--------------------------------------------------*/
577 symbol_translation (symbol
*this)
580 if (this->class == token_sym
581 && this->user_token_number
!= USER_NUMBER_HAS_STRING_ALIAS
)
583 /* A token which translation has already been set? */
584 if (token_translations
[this->user_token_number
] != undeftoken
->number
)
585 user_token_number_redeclaration
586 (this->user_token_number
,
587 symbols
[token_translations
[this->user_token_number
]],
590 token_translations
[this->user_token_number
] = this->number
;
597 symbol_translation_processor (void *this, void *null ATTRIBUTE_UNUSED
)
599 return symbol_translation (this);
603 /*---------------------------------------.
604 | Symbol and semantic type hash tables. |
605 `---------------------------------------*/
607 /* Initial capacity of symbol and semantic type hash table. */
608 #define HT_INITIAL_CAPACITY 257
610 static struct hash_table
*symbol_table
= NULL
;
611 static struct hash_table
*semantic_type_table
= NULL
;
614 hash_compare_symbol (const symbol
*m1
, const symbol
*m2
)
616 /* Since tags are unique, we can compare the pointers themselves. */
617 return UNIQSTR_EQ (m1
->tag
, m2
->tag
);
621 hash_compare_semantic_type (const semantic_type
*m1
, const semantic_type
*m2
)
623 /* Since names are unique, we can compare the pointers themselves. */
624 return UNIQSTR_EQ (m1
->tag
, m2
->tag
);
628 hash_symbol_comparator (void const *m1
, void const *m2
)
630 return hash_compare_symbol (m1
, m2
);
634 hash_semantic_type_comparator (void const *m1
, void const *m2
)
636 return hash_compare_semantic_type (m1
, m2
);
640 hash_symbol (const symbol
*m
, size_t tablesize
)
642 /* Since tags are unique, we can hash the pointer itself. */
643 return ((uintptr_t) m
->tag
) % tablesize
;
647 hash_semantic_type (const semantic_type
*m
, size_t tablesize
)
649 /* Since names are unique, we can hash the pointer itself. */
650 return ((uintptr_t) m
->tag
) % tablesize
;
654 hash_symbol_hasher (void const *m
, size_t tablesize
)
656 return hash_symbol (m
, tablesize
);
660 hash_semantic_type_hasher (void const *m
, size_t tablesize
)
662 return hash_semantic_type (m
, tablesize
);
665 /*-------------------------------.
666 | Create the symbol hash table. |
667 `-------------------------------*/
672 symbol_table
= hash_initialize (HT_INITIAL_CAPACITY
,
675 hash_symbol_comparator
,
677 semantic_type_table
= hash_initialize (HT_INITIAL_CAPACITY
,
679 hash_semantic_type_hasher
,
680 hash_semantic_type_comparator
,
685 /*----------------------------------------------------------------.
686 | Find the symbol named KEY, and return it. If it does not exist |
688 `----------------------------------------------------------------*/
691 symbol_from_uniqstr (const uniqstr key
, location loc
)
697 entry
= hash_lookup (symbol_table
, &probe
);
701 /* First insertion in the hash. */
702 aver (!symbols_sorted
);
703 entry
= symbol_new (key
, loc
);
704 if (!hash_insert (symbol_table
, entry
))
711 /*-----------------------------------------------------------------------.
712 | Find the semantic type named KEY, and return it. If it does not exist |
714 `-----------------------------------------------------------------------*/
717 semantic_type_from_uniqstr (const uniqstr key
)
720 semantic_type
*entry
;
723 entry
= hash_lookup (semantic_type_table
, &probe
);
727 /* First insertion in the hash. */
728 entry
= semantic_type_new (key
);
729 if (!hash_insert (semantic_type_table
, entry
))
736 /*----------------------------------------------------------------.
737 | Find the symbol named KEY, and return it. If it does not exist |
739 `----------------------------------------------------------------*/
742 symbol_get (const char *key
, location loc
)
744 return symbol_from_uniqstr (uniqstr_new (key
), loc
);
748 /*-----------------------------------------------------------------------.
749 | Find the semantic type named KEY, and return it. If it does not exist |
751 `-----------------------------------------------------------------------*/
754 semantic_type_get (const char *key
)
756 return semantic_type_from_uniqstr (uniqstr_new (key
));
760 /*------------------------------------------------------------------.
761 | Generate a dummy nonterminal, whose name cannot conflict with the |
763 `------------------------------------------------------------------*/
766 dummy_symbol_get (location loc
)
768 /* Incremented for each generated symbol. */
769 static int dummy_count
= 0;
770 static char buf
[256];
774 sprintf (buf
, "$@%d", ++dummy_count
);
775 sym
= symbol_get (buf
, loc
);
776 sym
->class = nterm_sym
;
777 sym
->number
= nvars
++;
782 symbol_is_dummy (const symbol
*sym
)
784 return sym
->tag
[0] == '@' || (sym
->tag
[0] == '$' && sym
->tag
[1] == '@');
787 /*-------------------.
788 | Free the symbols. |
789 `-------------------*/
794 hash_free (symbol_table
);
795 hash_free (semantic_type_table
);
797 free (symbols_sorted
);
801 /*---------------------------------------------------------------.
802 | Look for undefined symbols, report an error, and consider them |
804 `---------------------------------------------------------------*/
807 symbols_cmp (symbol
const *a
, symbol
const *b
)
809 return strcmp (a
->tag
, b
->tag
);
813 symbols_cmp_qsort (void const *a
, void const *b
)
815 return symbols_cmp (*(symbol
* const *)a
, *(symbol
* const *)b
);
819 symbols_do (Hash_processor processor
, void *processor_data
)
821 size_t count
= hash_get_n_entries (symbol_table
);
824 symbols_sorted
= xnmalloc (count
, sizeof *symbols_sorted
);
825 hash_get_entries (symbol_table
, (void**)symbols_sorted
, count
);
826 qsort (symbols_sorted
, count
, sizeof *symbols_sorted
,
831 for (i
= 0; i
< count
; ++i
)
832 processor (symbols_sorted
[i
], processor_data
);
836 /*--------------------------------------------------------------.
837 | Check that all the symbols are defined. Report any undefined |
838 | symbols and consider them nonterminals. |
839 `--------------------------------------------------------------*/
842 symbols_check_defined (void)
844 symbols_do (symbol_check_defined_processor
, NULL
);
847 /*------------------------------------------------------------------.
848 | Set TOKEN_TRANSLATIONS. Check that no two symbols share the same |
850 `------------------------------------------------------------------*/
853 symbols_token_translations_init (void)
855 bool num_256_available_p
= true;
858 /* Find the highest user token number, and whether 256, the POSIX
859 preferred user token number for the error token, is used. */
860 max_user_token_number
= 0;
861 for (i
= 0; i
< ntokens
; ++i
)
863 symbol
*this = symbols
[i
];
864 if (this->user_token_number
!= USER_NUMBER_UNDEFINED
)
866 if (this->user_token_number
> max_user_token_number
)
867 max_user_token_number
= this->user_token_number
;
868 if (this->user_token_number
== 256)
869 num_256_available_p
= false;
873 /* If 256 is not used, assign it to error, to follow POSIX. */
874 if (num_256_available_p
875 && errtoken
->user_token_number
== USER_NUMBER_UNDEFINED
)
876 errtoken
->user_token_number
= 256;
878 /* Set the missing user numbers. */
879 if (max_user_token_number
< 256)
880 max_user_token_number
= 256;
882 for (i
= 0; i
< ntokens
; ++i
)
884 symbol
*this = symbols
[i
];
885 if (this->user_token_number
== USER_NUMBER_UNDEFINED
)
886 this->user_token_number
= ++max_user_token_number
;
887 if (this->user_token_number
> max_user_token_number
)
888 max_user_token_number
= this->user_token_number
;
891 token_translations
= xnmalloc (max_user_token_number
+ 1,
892 sizeof *token_translations
);
894 /* Initialize all entries for literal tokens to the internal token
895 number for $undefined, which represents all invalid inputs. */
896 for (i
= 0; i
< max_user_token_number
+ 1; i
++)
897 token_translations
[i
] = undeftoken
->number
;
898 symbols_do (symbol_translation_processor
, NULL
);
902 /*----------------------------------------------------------------.
903 | Assign symbol numbers, and write definition of token names into |
904 | FDEFINES. Set up vectors SYMBOL_TABLE, TAGS of symbols. |
905 `----------------------------------------------------------------*/
910 symbols_do (symbol_check_alias_consistency_processor
, NULL
);
912 symbols
= xcalloc (nsyms
, sizeof *symbols
);
913 symbols_do (symbol_pack_processor
, NULL
);
915 /* Aliases leave empty slots in symbols, so remove them. */
919 int nsyms_old
= nsyms
;
920 for (writei
= 0, readi
= 0; readi
< nsyms_old
; readi
+= 1)
922 if (symbols
[readi
] == NULL
)
929 symbols
[writei
] = symbols
[readi
];
930 symbols
[writei
]->number
= writei
;
931 if (symbols
[writei
]->alias
)
932 symbols
[writei
]->alias
->number
= writei
;
937 symbols
= xnrealloc (symbols
, nsyms
, sizeof *symbols
);
939 symbols_token_translations_init ();
941 if (startsymbol
->class == unknown_sym
)
942 fatal_at (startsymbol_location
,
943 _("the start symbol %s is undefined"),
945 else if (startsymbol
->class == token_sym
)
946 fatal_at (startsymbol_location
,
947 _("the start symbol %s is a token"),
952 /*--------------------------------------------------.
953 | Set default tagged/tagless %destructor/%printer. |
954 `--------------------------------------------------*/
957 default_tagged_destructor_set (code_props
const *destructor
)
959 if (default_tagged_destructor
.code
)
961 complain_at (destructor
->location
,
962 _("redeclaration for default tagged %%destructor"));
963 complain_at (default_tagged_destructor
.location
,
964 _("previous declaration"));
966 default_tagged_destructor
= *destructor
;
970 default_tagless_destructor_set (code_props
const *destructor
)
972 if (default_tagless_destructor
.code
)
974 complain_at (destructor
->location
,
975 _("redeclaration for default tagless %%destructor"));
976 complain_at (default_tagless_destructor
.location
,
977 _("previous declaration"));
979 default_tagless_destructor
= *destructor
;
983 default_tagged_printer_set (code_props
const *printer
)
985 if (default_tagged_printer
.code
)
987 complain_at (printer
->location
,
988 _("redeclaration for default tagged %%printer"));
989 complain_at (default_tagged_printer
.location
,
990 _("previous declaration"));
992 default_tagged_printer
= *printer
;
996 default_tagless_printer_set (code_props
const *printer
)
998 if (default_tagless_printer
.code
)
1000 complain_at (printer
->location
,
1001 _("redeclaration for default tagless %%printer"));
1002 complain_at (default_tagless_printer
.location
,
1003 _("previous declaration"));
1005 default_tagless_printer
= *printer
;