Home
last modified time | relevance | path

Searched refs:struct_parse_info (Results 1 – 2 of 2) sorted by relevance

/dragonfly/contrib/gcc-4.7/gcc/
HDc-decl.c522 static struct c_struct_parse_info *struct_parse_info; variable
6713 *enclosing_struct_parse_info = struct_parse_info; in start_struct()
6714 struct_parse_info = XNEW (struct c_struct_parse_info); in start_struct()
6715 struct_parse_info->struct_types = VEC_alloc (tree, heap, 0); in start_struct()
6716 struct_parse_info->fields = VEC_alloc (c_binding_ptr, heap, 0); in start_struct()
6717 struct_parse_info->typedefs_seen = VEC_alloc (tree, heap, 0); in start_struct()
6828 struct_parse_info->fields, b); in grokfield()
7006 FOR_EACH_VEC_ELT (tree, struct_parse_info->struct_types, ix, x) in warn_cxx_compat_finish_struct()
7015 if (!VEC_empty (tree, struct_parse_info->typedefs_seen) in warn_cxx_compat_finish_struct()
7022 FOR_EACH_VEC_ELT (tree, struct_parse_info->typedefs_seen, ix, x) in warn_cxx_compat_finish_struct()
[all …]
/dragonfly/contrib/gcc-8.0/gcc/c/
HDc-decl.c594 static struct c_struct_parse_info *struct_parse_info; variable
7625 *enclosing_struct_parse_info = struct_parse_info; in start_struct()
7626 struct_parse_info = new c_struct_parse_info (); in start_struct()
7733 struct_parse_info->fields.safe_push (b); in grokfield()
7918 FOR_EACH_VEC_ELT (struct_parse_info->struct_types, ix, x) in warn_cxx_compat_finish_struct()
7927 if (!struct_parse_info->typedefs_seen.is_empty () in warn_cxx_compat_finish_struct()
7934 FOR_EACH_VEC_ELT (struct_parse_info->typedefs_seen, ix, x) in warn_cxx_compat_finish_struct()
7954 FOR_EACH_VEC_ELT (struct_parse_info->fields, ix, b) in warn_cxx_compat_finish_struct()
8288 delete struct_parse_info; in finish_struct() local
8290 struct_parse_info = enclosing_struct_parse_info; in finish_struct()
[all …]