Home
last modified time | relevance | path

Searched refs:enumtype (Results 1 – 3 of 3) sorted by relevance

/freebsd-12.1/contrib/gcc/
H A Dc-decl.c6329 tree enumtype = 0; in start_enum() local
6338 if (enumtype == 0 || TREE_CODE (enumtype) != ENUMERAL_TYPE) in start_enum()
6341 pushtag (name, enumtype); in start_enum()
6363 TYPE_PACKED (enumtype) = 1; in start_enum()
6365 return enumtype; in start_enum()
6425 TYPE_SIZE (enumtype) = 0; in finish_enum()
6437 layout_type (enumtype); in finish_enum()
6453 TREE_TYPE (enu) = enumtype; in finish_enum()
6465 tem = enumtype; in finish_enum()
6486 if (tem == enumtype) in finish_enum()
[all …]
H A DChangeLog-19987343 * c-decl.c (finish_enum): Copy TYPE_SIZ_UNIT from enumtype to tem.
/freebsd-12.1/contrib/gcc/cp/
H A Ddecl.c10639 tree enumtype; in start_enum() local
10651 if (enumtype != NULL_TREE && TREE_CODE (enumtype) == ENUMERAL_TYPE) in start_enum()
10666 enumtype = pushtag (name, enumtype, /*tag_scope=*/ts_current); in start_enum()
10669 return enumtype; in start_enum()
10677 finish_enum (tree enumtype) in finish_enum() argument
10694 TYPE_VALUES (enumtype) = nreverse (TYPE_VALUES (enumtype)); in finish_enum()
10712 if (TYPE_VALUES (enumtype)) in finish_enum()
10726 TREE_TYPE (decl) = enumtype; in finish_enum()
10794 "for %qT", enumtype); in finish_enum()
10912 if (TYPE_VALUES (enumtype)) in build_enumerator()
[all …]