Home
last modified time | relevance | path

Searched refs:have_std_attrs (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/c/
H A Dc-parser.c3107 bool have_std_attrs; in c_parser_enum_specifier() local
3115 have_std_attrs = c_parser_nth_token_starts_std_attributes (parser, 1); in c_parser_enum_specifier()
3116 if (have_std_attrs) in c_parser_enum_specifier()
3239 if (have_std_attrs && c_parser_next_token_is_not (parser, CPP_SEMICOLON)) in c_parser_enum_specifier()
3241 ret = parser_xref_tag (ident_loc, ENUMERAL_TYPE, ident, have_std_attrs, in c_parser_enum_specifier()
3298 bool have_std_attrs; in c_parser_struct_or_union_specifier() local
3318 have_std_attrs = c_parser_nth_token_starts_std_attributes (parser, 1); in c_parser_struct_or_union_specifier()
3319 if (have_std_attrs) in c_parser_struct_or_union_specifier()
3459 if (have_std_attrs && c_parser_next_token_is_not (parser, CPP_SEMICOLON)) in c_parser_struct_or_union_specifier()
3463 ret = parser_xref_tag (ident_loc, code, ident, have_std_attrs, std_attrs); in c_parser_struct_or_union_specifier()
[all …]
H A Dc-decl.c7845 bool have_std_attrs, tree attrs) in parser_xref_tag() argument
7870 ? (have_std_attrs ? ctsk_tagref_attrs : ctsk_tagref) in parser_xref_tag()
7871 : (have_std_attrs ? ctsk_tagfirstref_attrs : ctsk_tagfirstref)); in parser_xref_tag()
/netbsd-src/external/gpl3/gcc/dist/gcc/c/
H A Dc-parser.cc3149 bool have_std_attrs; in c_parser_enum_specifier() local
3157 have_std_attrs = c_parser_nth_token_starts_std_attributes (parser, 1); in c_parser_enum_specifier()
3158 if (have_std_attrs) in c_parser_enum_specifier()
3281 if (have_std_attrs && c_parser_next_token_is_not (parser, CPP_SEMICOLON)) in c_parser_enum_specifier()
3283 ret = parser_xref_tag (ident_loc, ENUMERAL_TYPE, ident, have_std_attrs, in c_parser_enum_specifier()
3340 bool have_std_attrs; in c_parser_struct_or_union_specifier() local
3360 have_std_attrs = c_parser_nth_token_starts_std_attributes (parser, 1); in c_parser_struct_or_union_specifier()
3361 if (have_std_attrs) in c_parser_struct_or_union_specifier()
3501 if (have_std_attrs && c_parser_next_token_is_not (parser, CPP_SEMICOLON)) in c_parser_struct_or_union_specifier()
3505 ret = parser_xref_tag (ident_loc, code, ident, have_std_attrs, std_attrs); in c_parser_struct_or_union_specifier()
[all …]
H A Dc-decl.cc8166 bool have_std_attrs, tree attrs) in parser_xref_tag() argument
8191 ? (have_std_attrs ? ctsk_tagref_attrs : ctsk_tagref) in parser_xref_tag()
8192 : (have_std_attrs ? ctsk_tagfirstref_attrs : ctsk_tagfirstref)); in parser_xref_tag()
H A DChangeLog1761 (parser_xref_tag): Add arguments have_std_attrs and attrs. Apply