aboutsummaryrefslogtreecommitdiff
path: root/gcc/c/c-parser.c
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2019-11-14 03:49:43 +0000
committerJoseph Myers <jsm28@gcc.gnu.org>2019-11-14 03:49:43 +0000
commit4e03c3a7c1149a8e43b7a2bfd927945cf1e90d19 (patch)
tree52ad5537d545cae2bfef8c73f76fee3ba758da47 /gcc/c/c-parser.c
parenteb270950acbae6f70e3487a6e63a26c1294656b3 (diff)
downloadgcc-4e03c3a7c1149a8e43b7a2bfd927945cf1e90d19.zip
gcc-4e03c3a7c1149a8e43b7a2bfd927945cf1e90d19.tar.gz
gcc-4e03c3a7c1149a8e43b7a2bfd927945cf1e90d19.tar.bz2
Support C2x [[]] attributes for C.
This patch adds support for the C2x [[]] attribute syntax to the C front end. Support is only added for C at this point, not for Objective-C; I intend to add the unbounded lookahead required to support it for Objective-C in a followup patch, but maybe not in development stage 1. The syntax is supported in all relevant places where the standard says it is supported, but support is not added for the individual attributes specified in C2x (all of which are optional to support). I expect to add support for some of them in followup patches; all except nodiscard can be mapped directly to the semantics of an existing GNU attribute (subject to extra checks for invalid usages such as the same attribute being used more than once inside a single [[]]), and the fallthrough attribute already works after this patch because of existing special-case code handling it (but without some of the checks for invalid usage being present). Note that the four functions c_token_starts_declspecs, c_token_starts_declaration, c_parser_next_token_starts_declspecs and c_parser_next_tokens_start_declaration do *not* accept "[[". This is analogous with the handling of __extension__: both cases have the property that they can start either a declaration or some other statements and so need an unbounded number of tokens to be parsed in the caller before it can find out what kind of syntactic construct follows. Note also that, while I updated all places calling those functions for standard C syntax to handle attributes if applicable, I did not do anything regarding calls to such functions for OpenMP or OpenACC constructs. Thus, if there are such constructs using such functions where "[[" *should* be accepted as a possible start to a declaration, the code for parsing those constructs should be updated accordingly. Although all cases of the syntax are handled, and attributes applied to the constructs the standard says they should be (with less laxity than there is for GNU attributes to allow an attribute applied to one construct to be moved automatically to another one), there is a major limitation in the existing language-independent code in attribs.c preventing most cases of type attributes from working. The following code has been present with minor changes since the first support for [[]] attributes for C++ was added: if (TYPE_P (*node) && cxx11_attr_p && !(flags & ATTR_FLAG_TYPE_IN_PLACE)) { /* This is a c++11 attribute that appertains to a type-specifier, outside of the definition of, a class type. Ignore it. */ auto_diagnostic_group d; if (warning (OPT_Wattributes, "attribute ignored")) inform (input_location, "an attribute that appertains to a type-specifier " "is ignored"); continue; } I see no justification for this in general for either C or C++ and so propose to remove or restrict it in a followup bug-fix patch. Both C and C++ are clear about attributes in certain places (at the end of declaration specifiers, or after function or array declarators) appertaining to a specific type (and explicitly say, in the case of attributes at the end of declaration specifiers, that they only apply for that particular use of that type, not for subsequent uses of the same type without the attributes). Thus it seems clear to me that, for example, int [[gnu::mode(DI)]] x; ought to be accepted as an analogue in [[]] syntax for int __attribute__((mode(DI))) x; (or strictly as an analogue for a version of that with extra parentheses to make the GNU attribute bind properly to the type rather than being automatically moved from the declaration to the type). There are certain cases where an attribute *does* only make sense for the definition of a type (e.g. "packed" on structure types), but those should already be handled in the individual attribute handlers (such as handle_packed_attribute, which already has code to deal with that issue). So my inclination is that the above-quoted check in attribs.c should simply be removed, but failing that it should be restricted to structure and union types (and such a change would be a bug-fix). That would then allow various cases of [[]] attributes on types to work properly. Bootstrapped with no regressions on x86_64-pc-linux-gnu. gcc/c: * c-tree.h (enum c_typespec_kind): Add ctsk_tagref_attrs and ctsk_tagfirstref_attrs. (struct c_declspecs): Update description of attrs. Add postfix_attrs and non_std_attrs_seen_p. Increase size of typespec_kind bit-field. (c_warn_unused_attributes): New declaration. (parser_xref_tag): Update prototype. * c-decl.c (c_warn_unused_attributes): New function. (shadow_tag_warned): Handle ctsk_tagfirstref_attrs and ctsk_tagref_attrs. Handle attribute declarations. (check_compound_literal_type): Handle ctsk_tagfirstref_attrs. (grokdeclarator): Handle standard attributes. (parser_xref_tag): Add arguments have_std_attrs and attrs. Apply attributes to incomplete type reference. (xref_tag): Update call to parser_xref_tag. (declspecs_add_addrspace, declspecs_add_type) (declspecs_add_scspec, declspecs_add_attrs): Set non_std_attrs_seen_p. (finish_declspecs): Apply postfix standard attributes to type. * c-parser.c (c_token_starts_declspecs) (c_token_starts_declaration, c_parser_next_token_starts_declspecs) (c_parser_next_tokens_start_declaration): Update comments. (c_parser_consume_token, c_parser_consume_pragma): Handle moving parser->tokens[2] to parser->tokens[1]. (c_parser_nth_token_starts_std_attributes) (c_parser_std_attribute_specifier_sequence): New functions. (c_parser_declaration_or_fndef): Add arguments have_attrs and attrs. All callers changed. Handle standard attributes. (c_parser_parms_declarator, c_parser_parms_list_declarator) (c_parser_parameter_declaration): Add argument have_gnu_attrs. All callers changed. (c_parser_declspecs): Add arguments start_std_attr_ok and end_std_attr_ok. All callers changed. Handle standard attributes. (c_parser_enum_specifier, c_parser_struct_or_union_specifier) (c_parser_direct_declarator, c_parser_direct_declarator_inner) (c_parser_compound_statement_nostart, c_parser_all_labels) (c_parser_label, c_parser_statement, c_parser_for_statement): Handle standard attributes. * c-parser.h (c_parser_declspecs): Update prototype. * gimple-parser.c (c_parser_gimple_declaration): Update call to c_parser_declspecs. gcc/testsuite: * gcc.dg/c2x-attr-fallthrough-1.c, gcc.dg/c2x-attr-syntax-1.c, gcc.dg/c2x-attr-syntax-2.c, gcc.dg/c2x-attr-syntax-3.c, gcc.dg/gnu2x-attr-syntax-1.c, gcc.dg/gnu2x-attr-syntax-2.c, gcc.dg/gnu2x-attrs-1.c: New tests. From-SVN: r278194
Diffstat (limited to 'gcc/c/c-parser.c')
-rw-r--r--gcc/c/c-parser.c427
1 files changed, 328 insertions, 99 deletions
diff --git a/gcc/c/c-parser.c b/gcc/c/c-parser.c
index 8d7ecf4..5f8695c 100644
--- a/gcc/c/c-parser.c
+++ b/gcc/c/c-parser.c
@@ -633,8 +633,8 @@ c_parser_next_token_is_qualifier (c_parser *parser)
return c_token_is_qualifier (token);
}
-/* Return true if TOKEN can start declaration specifiers, false
- otherwise. */
+/* Return true if TOKEN can start declaration specifiers (not
+ including standard attributes), false otherwise. */
static bool
c_token_starts_declspecs (c_token *token)
{
@@ -713,8 +713,9 @@ c_token_starts_declspecs (c_token *token)
}
-/* Return true if TOKEN can start declaration specifiers or a static
- assertion, false otherwise. */
+/* Return true if TOKEN can start declaration specifiers (not
+ including standard attributes) or a static assertion, false
+ otherwise. */
static bool
c_token_starts_declaration (c_token *token)
{
@@ -726,7 +727,8 @@ c_token_starts_declaration (c_token *token)
}
/* Return true if the next token from PARSER can start declaration
- specifiers, false otherwise. */
+ specifiers (not including standard attributes), false
+ otherwise. */
bool
c_parser_next_token_starts_declspecs (c_parser *parser)
{
@@ -748,7 +750,8 @@ c_parser_next_token_starts_declspecs (c_parser *parser)
}
/* Return true if the next tokens from PARSER can start declaration
- specifiers or a static assertion, false otherwise. */
+ specifiers (not including standard attributes) or a static
+ assertion, false otherwise. */
bool
c_parser_next_tokens_start_declaration (c_parser *parser)
{
@@ -787,8 +790,12 @@ c_parser_consume_token (c_parser *parser)
parser->last_token_location = parser->tokens[0].location;
if (parser->tokens != &parser->tokens_buf[0])
parser->tokens++;
- else if (parser->tokens_avail == 2)
- parser->tokens[0] = parser->tokens[1];
+ else if (parser->tokens_avail >= 2)
+ {
+ parser->tokens[0] = parser->tokens[1];
+ if (parser->tokens_avail >= 3)
+ parser->tokens[1] = parser->tokens[2];
+ }
parser->tokens_avail--;
}
@@ -803,8 +810,12 @@ c_parser_consume_pragma (c_parser *parser)
gcc_assert (parser->tokens[0].type == CPP_PRAGMA);
if (parser->tokens != &parser->tokens_buf[0])
parser->tokens++;
- else if (parser->tokens_avail == 2)
- parser->tokens[0] = parser->tokens[1];
+ else if (parser->tokens_avail >= 2)
+ {
+ parser->tokens[0] = parser->tokens[1];
+ if (parser->tokens_avail >= 3)
+ parser->tokens[1] = parser->tokens[2];
+ }
parser->tokens_avail--;
parser->in_pragma = true;
}
@@ -1384,10 +1395,15 @@ struct oacc_routine_data {
location_t loc;
};
+static bool c_parser_nth_token_starts_std_attributes (c_parser *,
+ unsigned int);
+static tree c_parser_std_attribute_specifier_sequence (c_parser *);
static void c_parser_external_declaration (c_parser *);
static void c_parser_asm_definition (c_parser *);
static void c_parser_declaration_or_fndef (c_parser *, bool, bool, bool,
bool, bool, tree *, vec<c_token>,
+ bool have_attrs = false,
+ tree attrs = NULL,
struct oacc_routine_data * = NULL,
bool * = NULL);
static void c_parser_static_assert_declaration_no_semi (c_parser *);
@@ -1402,10 +1418,11 @@ static struct c_declarator *c_parser_direct_declarator (c_parser *, bool,
static struct c_declarator *c_parser_direct_declarator_inner (c_parser *,
bool,
struct c_declarator *);
-static struct c_arg_info *c_parser_parms_declarator (c_parser *, bool, tree);
+static struct c_arg_info *c_parser_parms_declarator (c_parser *, bool, tree,
+ bool);
static struct c_arg_info *c_parser_parms_list_declarator (c_parser *, tree,
- tree);
-static struct c_parm *c_parser_parameter_declaration (c_parser *, tree);
+ tree, bool);
+static struct c_parm *c_parser_parameter_declaration (c_parser *, tree, bool);
static tree c_parser_simple_asm_expr (c_parser *);
static tree c_parser_gnu_attributes (c_parser *);
static struct c_expr c_parser_initializer (c_parser *);
@@ -1706,11 +1723,15 @@ add_debug_begin_stmt (location_t loc)
declarations are OK (subject to all other constraints); otherwise
(old-style parameter declarations) they are diagnosed. If
START_ATTR_OK is true, the declaration specifiers may start with
- attributes; otherwise they may not.
+ attributes (GNU or standard); otherwise they may not.
OBJC_FOREACH_OBJECT_DECLARATION can be used to get back the parsed
declaration when parsing an Objective-C foreach statement.
FALLTHRU_ATTR_P is used to signal whether this function parsed
- "__attribute__((fallthrough));".
+ "__attribute__((fallthrough));". ATTRS are any standard attributes
+ parsed in the caller (in contexts where such attributes had to be
+ parsed to determine whether what follows is a declaration or a
+ statement); HAVE_ATTRS says whether there were any such attributes
+ (even empty).
declaration:
declaration-specifiers init-declarator-list[opt] ;
@@ -1784,6 +1805,7 @@ c_parser_declaration_or_fndef (c_parser *parser, bool fndef_ok,
bool nested, bool start_attr_ok,
tree *objc_foreach_object_declaration,
vec<c_token> omp_declare_simd_clauses,
+ bool have_attrs, tree attrs,
struct oacc_routine_data *oacc_routine_data,
bool *fallthru_attr_p)
{
@@ -1803,6 +1825,13 @@ c_parser_declaration_or_fndef (c_parser *parser, bool fndef_ok,
}
specs = build_null_declspecs ();
+ /* Handle any standard attributes parsed in the caller. */
+ if (have_attrs)
+ {
+ declspecs_add_attrs (here, specs, attrs);
+ specs->non_std_attrs_seen_p = false;
+ }
+
/* Try to detect an unknown type name when we have "A B" or "A *B". */
if (c_parser_peek_token (parser)->type == CPP_NAME
&& c_parser_peek_token (parser)->id_kind == C_ID_ID
@@ -1867,8 +1896,14 @@ c_parser_declaration_or_fndef (c_parser *parser, bool fndef_ok,
fndef_ok = !nested;
}
+ /* When there are standard attributes at the start of the
+ declaration (to apply to the entity being declared), an
+ init-declarator-list or function definition must be present. */
+ if (c_parser_nth_token_starts_std_attributes (parser, 1))
+ have_attrs = true;
+
c_parser_declspecs (parser, specs, true, true, start_attr_ok,
- true, true, cla_nonabstract_decl);
+ true, true, start_attr_ok, true, cla_nonabstract_decl);
if (parser->error)
{
c_parser_skip_to_end_of_block_or_statement (parser);
@@ -1896,7 +1931,8 @@ c_parser_declaration_or_fndef (c_parser *parser, bool fndef_ok,
void_type_node, 0);
add_stmt (fn);
}
- else if (empty_ok)
+ else if (empty_ok && !(have_attrs
+ && specs->non_std_attrs_seen_p))
shadow_tag (specs);
else
{
@@ -2556,7 +2592,14 @@ c_parser_static_assert_declaration_no_semi (c_parser *parser)
Storage class specifiers are accepted iff SCSPEC_OK; type
specifiers are accepted iff TYPESPEC_OK; alignment specifiers are
accepted iff ALIGNSPEC_OK; gnu-attributes are accepted at the start
- iff START_ATTR_OK; __auto_type is accepted iff AUTO_TYPE_OK.
+ iff START_ATTR_OK; __auto_type is accepted iff AUTO_TYPE_OK. In
+ addition to the syntax shown, standard attributes are accepted at
+ the start iff START_STD_ATTR_OK and at the end iff END_STD_ATTR_OK;
+ unlike gnu-attributes, they are not accepted in the middle of the
+ list. (This combines various different syntax productions in the C
+ standard, and in some cases gnu-attributes and standard attributes
+ at the start may already have been parsed before this function is
+ called.)
declaration-specifiers:
storage-class-specifier declaration-specifiers[opt]
@@ -2664,6 +2707,7 @@ void
c_parser_declspecs (c_parser *parser, struct c_declspecs *specs,
bool scspec_ok, bool typespec_ok, bool start_attr_ok,
bool alignspec_ok, bool auto_type_ok,
+ bool start_std_attr_ok, bool end_std_attr_ok,
enum c_lookahead_kind la)
{
bool attrs_ok = start_attr_ok;
@@ -2672,6 +2716,16 @@ c_parser_declspecs (c_parser *parser, struct c_declspecs *specs,
if (!typespec_ok)
gcc_assert (la == cla_prefer_id);
+ if (start_std_attr_ok
+ && c_parser_nth_token_starts_std_attributes (parser, 1))
+ {
+ gcc_assert (!specs->non_std_attrs_seen_p);
+ location_t loc = c_parser_peek_token (parser)->location;
+ tree attrs = c_parser_std_attribute_specifier_sequence (parser);
+ declspecs_add_attrs (loc, specs, attrs);
+ specs->non_std_attrs_seen_p = false;
+ }
+
while (c_parser_next_token_is (parser, CPP_NAME)
|| c_parser_next_token_is (parser, CPP_KEYWORD)
|| (c_dialect_objc () && c_parser_next_token_is (parser, CPP_LESS)))
@@ -2944,7 +2998,10 @@ c_parser_declspecs (c_parser *parser, struct c_declspecs *specs,
goto out;
}
}
- out: ;
+ out:
+ if (end_std_attr_ok
+ && c_parser_nth_token_starts_std_attributes (parser, 1))
+ specs->postfix_attrs = c_parser_std_attribute_specifier_sequence (parser);
}
/* Parse an enum specifier (C90 6.5.2.2, C99 6.7.2.2, C11 6.7.2.2).
@@ -2967,14 +3024,16 @@ c_parser_declspecs (c_parser *parser, struct c_declspecs *specs,
enumerator-list , enumerator
enumerator:
- enumeration-constant
- enumeration-constant = constant-expression
+ enumeration-constant attribute-specifier-sequence[opt]
+ enumeration-constant attribute-specifier-sequence[opt]
+ = constant-expression
GNU Extensions:
enumerator:
- enumeration-constant gnu-attributes[opt]
- enumeration-constant gnu-attributes[opt] = constant-expression
+ enumeration-constant attribute-specifier-sequence[opt] gnu-attributes[opt]
+ enumeration-constant attribute-specifier-sequence[opt] gnu-attributes[opt]
+ = constant-expression
*/
@@ -2982,12 +3041,17 @@ static struct c_typespec
c_parser_enum_specifier (c_parser *parser)
{
struct c_typespec ret;
+ bool have_std_attrs;
+ tree std_attrs = NULL_TREE;
tree attrs;
tree ident = NULL_TREE;
location_t enum_loc;
location_t ident_loc = UNKNOWN_LOCATION; /* Quiet warning. */
gcc_assert (c_parser_next_token_is_keyword (parser, RID_ENUM));
c_parser_consume_token (parser);
+ have_std_attrs = c_parser_nth_token_starts_std_attributes (parser, 1);
+ if (have_std_attrs)
+ std_attrs = c_parser_std_attribute_specifier_sequence (parser);
attrs = c_parser_gnu_attributes (parser);
enum_loc = c_parser_peek_token (parser)->location;
/* Set the location in case we create a decl now. */
@@ -3044,7 +3108,11 @@ c_parser_enum_specifier (c_parser *parser)
decl_loc = value_loc = token->location;
c_parser_consume_token (parser);
/* Parse any specified attributes. */
- tree enum_attrs = c_parser_gnu_attributes (parser);
+ tree std_attrs = NULL_TREE;
+ if (c_parser_nth_token_starts_std_attributes (parser, 1))
+ std_attrs = c_parser_std_attribute_specifier_sequence (parser);
+ tree enum_attrs = chainon (std_attrs,
+ c_parser_gnu_attributes (parser));
if (c_parser_next_token_is (parser, CPP_EQ))
{
c_parser_consume_token (parser);
@@ -3084,7 +3152,8 @@ c_parser_enum_specifier (c_parser *parser)
}
postfix_attrs = c_parser_gnu_attributes (parser);
ret.spec = finish_enum (type, nreverse (values),
- chainon (attrs, postfix_attrs));
+ chainon (std_attrs,
+ chainon (attrs, postfix_attrs)));
ret.kind = ctsk_tagdef;
ret.expr = NULL_TREE;
ret.expr_const_operands = true;
@@ -3100,7 +3169,14 @@ c_parser_enum_specifier (c_parser *parser)
ret.expr_const_operands = true;
return ret;
}
- ret = parser_xref_tag (ident_loc, ENUMERAL_TYPE, ident);
+ /* Attributes may only appear when the members are defined or in
+ certain forward declarations (treat enum forward declarations in
+ GNU C analogously to struct and union forward declarations in
+ standard C). */
+ if (have_std_attrs && c_parser_next_token_is_not (parser, CPP_SEMICOLON))
+ c_parser_error (parser, "expected %<;%>");
+ ret = parser_xref_tag (ident_loc, ENUMERAL_TYPE, ident, have_std_attrs,
+ std_attrs);
/* In ISO C, enumerated types can be referred to only if already
defined. */
if (pedantic && !COMPLETE_TYPE_P (ret.spec))
@@ -3115,9 +3191,10 @@ c_parser_enum_specifier (c_parser *parser)
/* Parse a struct or union specifier (C90 6.5.2.1, C99 6.7.2.1, C11 6.7.2.1).
struct-or-union-specifier:
- struct-or-union gnu-attributes[opt] identifier[opt]
- { struct-contents } gnu-attributes[opt]
- struct-or-union gnu-attributes[opt] identifier
+ struct-or-union attribute-specifier-sequence[opt] gnu-attributes[opt]
+ identifier[opt] { struct-contents } gnu-attributes[opt]
+ struct-or-union attribute-specifier-sequence[opt] gnu-attributes[opt]
+ identifier
struct-contents:
struct-declaration-list
@@ -3155,6 +3232,8 @@ static struct c_typespec
c_parser_struct_or_union_specifier (c_parser *parser)
{
struct c_typespec ret;
+ bool have_std_attrs;
+ tree std_attrs = NULL_TREE;
tree attrs;
tree ident = NULL_TREE;
location_t struct_loc;
@@ -3173,6 +3252,9 @@ c_parser_struct_or_union_specifier (c_parser *parser)
}
struct_loc = c_parser_peek_token (parser)->location;
c_parser_consume_token (parser);
+ have_std_attrs = c_parser_nth_token_starts_std_attributes (parser, 1);
+ if (have_std_attrs)
+ std_attrs = c_parser_std_attribute_specifier_sequence (parser);
attrs = c_parser_gnu_attributes (parser);
/* Set the location in case we create a decl now. */
@@ -3291,7 +3373,9 @@ c_parser_struct_or_union_specifier (c_parser *parser)
}
postfix_attrs = c_parser_gnu_attributes (parser);
ret.spec = finish_struct (struct_loc, type, nreverse (contents),
- chainon (attrs, postfix_attrs), struct_info);
+ chainon (std_attrs,
+ chainon (attrs, postfix_attrs)),
+ struct_info);
ret.kind = ctsk_tagdef;
ret.expr = NULL_TREE;
ret.expr_const_operands = true;
@@ -3307,7 +3391,13 @@ c_parser_struct_or_union_specifier (c_parser *parser)
ret.expr_const_operands = true;
return ret;
}
- ret = parser_xref_tag (ident_loc, code, ident);
+ /* Attributes may only appear when the members are defined or in
+ certain forward declarations. */
+ if (have_std_attrs && c_parser_next_token_is_not (parser, CPP_SEMICOLON))
+ c_parser_error (parser, "expected %<;%>");
+ /* ??? Existing practice is that GNU attributes are ignored after
+ the struct or union keyword when not defining the members. */
+ ret = parser_xref_tag (ident_loc, code, ident, have_std_attrs, std_attrs);
return ret;
}
@@ -3315,7 +3405,8 @@ c_parser_struct_or_union_specifier (c_parser *parser)
*without* the trailing semicolon.
struct-declaration:
- specifier-qualifier-list struct-declarator-list
+ attribute-specifier-sequence[opt] specifier-qualifier-list
+ attribute-specifier-sequence[opt] struct-declarator-list
static_assert-declaration-no-semi
specifier-qualifier-list:
@@ -3375,7 +3466,7 @@ c_parser_struct_declaration (c_parser *parser)
of N1731.
<http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1731.pdf> */
c_parser_declspecs (parser, specs, false, true, true,
- true, false, cla_nonabstract_decl);
+ true, false, true, true, cla_nonabstract_decl);
if (parser->error)
return NULL_TREE;
if (!specs->declspecs_seen_p)
@@ -3693,7 +3784,7 @@ c_parser_declarator (c_parser *parser, bool type_seen_p, c_dtr_syn kind,
struct c_declarator *inner;
c_parser_consume_token (parser);
c_parser_declspecs (parser, quals_attrs, false, false, true,
- false, false, cla_prefer_id);
+ false, false, true, false, cla_prefer_id);
inner = c_parser_declarator (parser, type_seen_p, kind, seen_id);
if (inner == NULL)
return NULL;
@@ -3718,14 +3809,15 @@ c_parser_direct_declarator (c_parser *parser, bool type_seen_p, c_dtr_syn kind,
parenthesized declarator. In an abstract declarator or parameter
declarator, they could start a parenthesized declarator or a
parameter list. To tell which, the open parenthesis and any
- following gnu-attributes must be read. If a declaration specifier
- follows, then it is a parameter list; if the specifier is a
- typedef name, there might be an ambiguity about redeclaring it,
- which is resolved in the direction of treating it as a typedef
- name. If a close parenthesis follows, it is also an empty
- parameter list, as the syntax does not permit empty abstract
- declarators. Otherwise, it is a parenthesized declarator (in
- which case the analysis may be repeated inside it, recursively).
+ following gnu-attributes must be read. If a declaration
+ specifier or standard attributes follow, then it is a parameter
+ list; if the specifier is a typedef name, there might be an
+ ambiguity about redeclaring it, which is resolved in the
+ direction of treating it as a typedef name. If a close
+ parenthesis follows, it is also an empty parameter list, as the
+ syntax does not permit empty abstract declarators. Otherwise, it
+ is a parenthesized declarator (in which case the analysis may be
+ repeated inside it, recursively).
??? There is an ambiguity in a parameter declaration "int
(__attribute__((foo)) x)", where x is not a typedef name: it
@@ -3758,11 +3850,18 @@ c_parser_direct_declarator (c_parser *parser, bool type_seen_p, c_dtr_syn kind,
*seen_id = true;
inner->id_loc = c_parser_peek_token (parser)->location;
c_parser_consume_token (parser);
+ if (c_parser_nth_token_starts_std_attributes (parser, 1))
+ {
+ tree std_attrs = c_parser_std_attribute_specifier_sequence (parser);
+ if (std_attrs)
+ inner = build_attrs_declarator (std_attrs, inner);
+ }
return c_parser_direct_declarator_inner (parser, *seen_id, inner);
}
if (kind != C_DTR_NORMAL
- && c_parser_next_token_is (parser, CPP_OPEN_SQUARE))
+ && c_parser_next_token_is (parser, CPP_OPEN_SQUARE)
+ && !c_parser_nth_token_starts_std_attributes (parser, 1))
{
struct c_declarator *inner = build_id_declarator (NULL_TREE);
inner->id_loc = c_parser_peek_token (parser)->location;
@@ -3777,14 +3876,18 @@ c_parser_direct_declarator (c_parser *parser, bool type_seen_p, c_dtr_syn kind,
tree attrs;
struct c_declarator *inner;
c_parser_consume_token (parser);
+ bool have_gnu_attrs = c_parser_next_token_is_keyword (parser,
+ RID_ATTRIBUTE);
attrs = c_parser_gnu_attributes (parser);
if (kind != C_DTR_NORMAL
&& (c_parser_next_token_starts_declspecs (parser)
+ || (!have_gnu_attrs
+ && c_parser_nth_token_starts_std_attributes (parser, 1))
|| c_parser_next_token_is (parser, CPP_CLOSE_PAREN)))
{
struct c_arg_info *args
= c_parser_parms_declarator (parser, kind == C_DTR_NORMAL,
- attrs);
+ attrs, have_gnu_attrs);
if (args == NULL)
return NULL;
else
@@ -3792,6 +3895,16 @@ c_parser_direct_declarator (c_parser *parser, bool type_seen_p, c_dtr_syn kind,
inner
= build_function_declarator (args,
build_id_declarator (NULL_TREE));
+ if (!(args->types
+ && args->types != error_mark_node
+ && TREE_CODE (TREE_VALUE (args->types)) == IDENTIFIER_NODE)
+ && c_parser_nth_token_starts_std_attributes (parser, 1))
+ {
+ tree std_attrs
+ = c_parser_std_attribute_specifier_sequence (parser);
+ if (std_attrs)
+ inner = build_attrs_declarator (std_attrs, inner);
+ }
return c_parser_direct_declarator_inner (parser, *seen_id,
inner);
}
@@ -3837,7 +3950,8 @@ c_parser_direct_declarator_inner (c_parser *parser, bool id_present,
struct c_declarator *inner)
{
/* Parse a sequence of array declarators and parameter lists. */
- if (c_parser_next_token_is (parser, CPP_OPEN_SQUARE))
+ if (c_parser_next_token_is (parser, CPP_OPEN_SQUARE)
+ && !c_parser_nth_token_starts_std_attributes (parser, 1))
{
location_t brace_loc = c_parser_peek_token (parser)->location;
struct c_declarator *declarator;
@@ -3850,13 +3964,13 @@ c_parser_direct_declarator_inner (c_parser *parser, bool id_present,
dimen.original_type = NULL_TREE;
c_parser_consume_token (parser);
c_parser_declspecs (parser, quals_attrs, false, false, true,
- false, false, cla_prefer_id);
+ false, false, false, false, cla_prefer_id);
static_seen = c_parser_next_token_is_keyword (parser, RID_STATIC);
if (static_seen)
c_parser_consume_token (parser);
if (static_seen && !quals_attrs->declspecs_seen_p)
c_parser_declspecs (parser, quals_attrs, false, false, true,
- false, false, cla_prefer_id);
+ false, false, false, false, cla_prefer_id);
if (!quals_attrs->declspecs_seen_p)
quals_attrs = NULL;
/* If "static" is present, there must be an array dimension.
@@ -3909,6 +4023,13 @@ c_parser_direct_declarator_inner (c_parser *parser, bool id_present,
if (declarator == NULL)
return NULL;
inner = set_array_declarator_inner (declarator, inner);
+ if (c_parser_nth_token_starts_std_attributes (parser, 1))
+ {
+ tree std_attrs
+ = c_parser_std_attribute_specifier_sequence (parser);
+ if (std_attrs)
+ inner = build_attrs_declarator (std_attrs, inner);
+ }
return c_parser_direct_declarator_inner (parser, id_present, inner);
}
else if (c_parser_next_token_is (parser, CPP_OPEN_PAREN))
@@ -3916,13 +4037,26 @@ c_parser_direct_declarator_inner (c_parser *parser, bool id_present,
tree attrs;
struct c_arg_info *args;
c_parser_consume_token (parser);
+ bool have_gnu_attrs = c_parser_next_token_is_keyword (parser,
+ RID_ATTRIBUTE);
attrs = c_parser_gnu_attributes (parser);
- args = c_parser_parms_declarator (parser, id_present, attrs);
+ args = c_parser_parms_declarator (parser, id_present, attrs,
+ have_gnu_attrs);
if (args == NULL)
return NULL;
else
{
inner = build_function_declarator (args, inner);
+ if (!(args->types
+ && args->types != error_mark_node
+ && TREE_CODE (TREE_VALUE (args->types)) == IDENTIFIER_NODE)
+ && c_parser_nth_token_starts_std_attributes (parser, 1))
+ {
+ tree std_attrs
+ = c_parser_std_attribute_specifier_sequence (parser);
+ if (std_attrs)
+ inner = build_attrs_declarator (std_attrs, inner);
+ }
return c_parser_direct_declarator_inner (parser, id_present, inner);
}
}
@@ -3930,12 +4064,16 @@ c_parser_direct_declarator_inner (c_parser *parser, bool id_present,
}
/* Parse a parameter list or identifier list, including the closing
- parenthesis but not the opening one. ATTRS are the attributes at
- the start of the list. ID_LIST_OK is true if an identifier list is
- acceptable; such a list must not have attributes at the start. */
+ parenthesis but not the opening one. ATTRS are the gnu-attributes
+ at the start of the list. ID_LIST_OK is true if an identifier list
+ is acceptable; such a list must not have attributes at the start.
+ HAVE_GNU_ATTRS says whether any gnu-attributes (including empty
+ attributes) were present (in which case standard attributes cannot
+ occur). */
static struct c_arg_info *
-c_parser_parms_declarator (c_parser *parser, bool id_list_ok, tree attrs)
+c_parser_parms_declarator (c_parser *parser, bool id_list_ok, tree attrs,
+ bool have_gnu_attrs)
{
push_scope ();
declare_parm_level ();
@@ -3988,28 +4126,31 @@ c_parser_parms_declarator (c_parser *parser, bool id_list_ok, tree attrs)
}
else
{
- struct c_arg_info *ret = c_parser_parms_list_declarator (parser, attrs,
- NULL);
+ struct c_arg_info *ret
+ = c_parser_parms_list_declarator (parser, attrs, NULL, have_gnu_attrs);
pop_scope ();
return ret;
}
}
/* Parse a parameter list (possibly empty), including the closing
- parenthesis but not the opening one. ATTRS are the attributes at
- the start of the list. EXPR is NULL or an expression that needs to
- be evaluated for the side effects of array size expressions in the
- parameters. */
+ parenthesis but not the opening one. ATTRS are the gnu-attributes
+ at the start of the list; if HAVE_GNU_ATTRS, there were some such
+ attributes (possibly empty, in which case ATTRS is NULL_TREE),
+ which means standard attributes cannot start the list. EXPR is
+ NULL or an expression that needs to be evaluated for the side
+ effects of array size expressions in the parameters. */
static struct c_arg_info *
-c_parser_parms_list_declarator (c_parser *parser, tree attrs, tree expr)
+c_parser_parms_list_declarator (c_parser *parser, tree attrs, tree expr,
+ bool have_gnu_attrs)
{
bool bad_parm = false;
/* ??? Following the old parser, forward parameter declarations may
use abstract declarators, and if no real parameter declarations
follow the forward declarations then this is not diagnosed. Also
- note as above that attributes are ignored as the only contents of
+ note as above that gnu-attributes are ignored as the only contents of
the parentheses, or as the only contents after forward
declarations. */
if (c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
@@ -4053,8 +4194,10 @@ c_parser_parms_list_declarator (c_parser *parser, tree attrs, tree expr)
while (true)
{
/* Parse a parameter. */
- struct c_parm *parm = c_parser_parameter_declaration (parser, attrs);
+ struct c_parm *parm = c_parser_parameter_declaration (parser, attrs,
+ have_gnu_attrs);
attrs = NULL_TREE;
+ have_gnu_attrs = false;
if (parm == NULL)
bad_parm = true;
else
@@ -4064,8 +4207,11 @@ c_parser_parms_list_declarator (c_parser *parser, tree attrs, tree expr)
tree new_attrs;
c_parser_consume_token (parser);
mark_forward_parm_decls ();
+ bool new_have_gnu_attrs
+ = c_parser_next_token_is_keyword (parser, RID_ATTRIBUTE);
new_attrs = c_parser_gnu_attributes (parser);
- return c_parser_parms_list_declarator (parser, new_attrs, expr);
+ return c_parser_parms_list_declarator (parser, new_attrs, expr,
+ new_have_gnu_attrs);
}
if (c_parser_next_token_is (parser, CPP_CLOSE_PAREN))
{
@@ -4103,11 +4249,14 @@ c_parser_parms_list_declarator (c_parser *parser, tree attrs, tree expr)
}
}
-/* Parse a parameter declaration. ATTRS are the attributes at the
- start of the declaration if it is the first parameter. */
+/* Parse a parameter declaration. ATTRS are the gnu-attributes at the
+ start of the declaration if it is the first parameter;
+ HAVE_GNU_ATTRS is true if there were any gnu-attributes there (even
+ empty) there. */
static struct c_parm *
-c_parser_parameter_declaration (c_parser *parser, tree attrs)
+c_parser_parameter_declaration (c_parser *parser, tree attrs,
+ bool have_gnu_attrs)
{
struct c_declspecs *specs;
struct c_declarator *declarator;
@@ -4119,7 +4268,8 @@ c_parser_parameter_declaration (c_parser *parser, tree attrs)
while (c_parser_next_token_is (parser, CPP_PRAGMA))
c_parser_pragma (parser, pragma_param, NULL);
- if (!c_parser_next_token_starts_declspecs (parser))
+ if (!c_parser_next_token_starts_declspecs (parser)
+ && !c_parser_nth_token_starts_std_attributes (parser, 1))
{
c_token *token = c_parser_peek_token (parser);
if (parser->error)
@@ -4161,7 +4311,7 @@ c_parser_parameter_declaration (c_parser *parser, tree attrs)
attrs = NULL_TREE;
}
c_parser_declspecs (parser, specs, true, true, true, true, false,
- cla_nonabstract_decl);
+ !have_gnu_attrs, true, cla_nonabstract_decl);
finish_declspecs (specs);
pending_xref_error ();
prefix_attrs = specs->attrs;
@@ -4733,6 +4883,33 @@ c_parser_std_attribute_specifier (c_parser *parser, bool for_tm)
return nreverse (attributes);
}
+/* Return whether standard attributes start with the Nth token. */
+
+static bool
+c_parser_nth_token_starts_std_attributes (c_parser *parser, unsigned int n)
+{
+ if (!(c_parser_peek_nth_token (parser, n)->type == CPP_OPEN_SQUARE
+ && c_parser_peek_nth_token (parser, n + 1)->type == CPP_OPEN_SQUARE))
+ return false;
+ /* In C, '[[' must start attributes. In Objective-C, identifying
+ whether those tokens start attributes requires unbounded
+ lookahead, which is not yet implemented. */
+ return !c_dialect_objc ();
+}
+
+static tree
+c_parser_std_attribute_specifier_sequence (c_parser *parser)
+{
+ tree attributes = NULL_TREE;
+ do
+ {
+ tree attrs = c_parser_std_attribute_specifier (parser, false);
+ attributes = chainon (attributes, attrs);
+ }
+ while (c_parser_nth_token_starts_std_attributes (parser, 1));
+ return attributes;
+}
+
/* Parse a type name (C90 6.5.5, C99 6.7.6, C11 6.7.7). ALIGNAS_OK
says whether alignment specifiers are OK (only in cases that might
be the type name of a compound literal).
@@ -4749,7 +4926,7 @@ c_parser_type_name (c_parser *parser, bool alignas_ok)
struct c_type_name *ret;
bool dummy = false;
c_parser_declspecs (parser, specs, false, true, true, alignas_ok, false,
- cla_prefer_type);
+ false, true, cla_prefer_type);
if (!specs->declspecs_seen_p)
{
c_parser_error (parser, "expected specifier-qualifier-list");
@@ -5281,11 +5458,18 @@ c_parser_compound_statement_nostart (c_parser *parser)
{
location_t loc = c_parser_peek_token (parser)->location;
loc = expansion_point_location_if_in_system_header (loc);
+ /* Standard attributes may start a statement or a declaration. */
+ bool have_std_attrs
+ = c_parser_nth_token_starts_std_attributes (parser, 1);
+ tree std_attrs = NULL_TREE;
+ if (have_std_attrs)
+ std_attrs = c_parser_std_attribute_specifier_sequence (parser);
if (c_parser_next_token_is_keyword (parser, RID_CASE)
|| c_parser_next_token_is_keyword (parser, RID_DEFAULT)
|| (c_parser_next_token_is (parser, CPP_NAME)
&& c_parser_peek_2nd_token (parser)->type == CPP_COLON))
{
+ c_warn_unused_attributes (std_attrs);
if (c_parser_next_token_is_keyword (parser, RID_CASE))
label_loc = c_parser_peek_2nd_token (parser)->location;
else
@@ -5296,14 +5480,17 @@ c_parser_compound_statement_nostart (c_parser *parser)
c_parser_label (parser);
}
else if (!last_label
- && c_parser_next_tokens_start_declaration (parser))
+ && (c_parser_next_tokens_start_declaration (parser)
+ || (have_std_attrs
+ && c_parser_next_token_is (parser, CPP_SEMICOLON))))
{
last_label = false;
mark_valid_location_for_stdc_pragma (false);
bool fallthru_attr_p = false;
- c_parser_declaration_or_fndef (parser, true, true, true, true,
- true, NULL, vNULL, NULL,
- &fallthru_attr_p);
+ c_parser_declaration_or_fndef (parser, true, !have_std_attrs,
+ true, true, true, NULL,
+ vNULL, have_std_attrs, std_attrs,
+ NULL, &fallthru_attr_p);
if (last_stmt && !fallthru_attr_p)
pedwarn_c90 (loc, OPT_Wdeclaration_after_statement,
"ISO C90 forbids mixed declarations and code");
@@ -5315,12 +5502,17 @@ c_parser_compound_statement_nostart (c_parser *parser)
/* __extension__ can start a declaration, but is also an
unary operator that can start an expression. Consume all
but the last of a possible series of __extension__ to
- determine which. */
+ determine which. If standard attributes have already
+ been seen, it must start a statement, not a declaration,
+ but standard attributes starting a declaration may appear
+ after __extension__. */
while (c_parser_peek_2nd_token (parser)->type == CPP_KEYWORD
&& (c_parser_peek_2nd_token (parser)->keyword
== RID_EXTENSION))
c_parser_consume_token (parser);
- if (c_token_starts_declaration (c_parser_peek_2nd_token (parser)))
+ if (!have_std_attrs
+ && (c_token_starts_declaration (c_parser_peek_2nd_token (parser))
+ || c_parser_nth_token_starts_std_attributes (parser, 2)))
{
int ext;
ext = disable_extension_diagnostics ();
@@ -5342,6 +5534,8 @@ c_parser_compound_statement_nostart (c_parser *parser)
}
else if (c_parser_next_token_is (parser, CPP_PRAGMA))
{
+ if (have_std_attrs)
+ c_parser_error (parser, "expected declaration or statement");
/* External pragmas, and some omp pragmas, are not associated
with regular c code, and so are not to be considered statements
syntactically. This ensures that the user doesn't put them
@@ -5376,6 +5570,7 @@ c_parser_compound_statement_nostart (c_parser *parser)
else
{
statement:
+ c_warn_unused_attributes (std_attrs);
last_label = false;
last_stmt = true;
mark_valid_location_for_stdc_pragma (false);
@@ -5391,11 +5586,22 @@ c_parser_compound_statement_nostart (c_parser *parser)
mark_valid_location_for_stdc_pragma (save_valid_for_pragma);
}
-/* Parse all consecutive labels. */
+/* Parse all consecutive labels, possibly preceded by standard
+ attributes. In this context, a statement is required, not a
+ declaration, so attributes must be followed by a statement that is
+ not just a semicolon. */
static void
c_parser_all_labels (c_parser *parser)
{
+ if (c_parser_nth_token_starts_std_attributes (parser, 1))
+ {
+ tree std_attrs = c_parser_std_attribute_specifier_sequence (parser);
+ if (c_parser_next_token_is (parser, CPP_SEMICOLON))
+ c_parser_error (parser, "expected statement");
+ else
+ c_warn_unused_attributes (std_attrs);
+ }
while (c_parser_next_token_is_keyword (parser, RID_CASE)
|| c_parser_next_token_is_keyword (parser, RID_DEFAULT)
|| (c_parser_next_token_is (parser, CPP_NAME)
@@ -5417,7 +5623,11 @@ c_parser_all_labels (c_parser *parser)
The use of gnu-attributes on labels is a GNU extension. The syntax in
GNU C accepts any expressions without commas, non-constant
- expressions being rejected later. */
+ expressions being rejected later. Any standard
+ attribute-specifier-sequence before the first label has been parsed
+ in the caller, to distinguish statements from declarations. Any
+ attribute-specifier-sequence after the label is parsed in this
+ function. */
static void
c_parser_label (c_parser *parser)
@@ -5480,8 +5690,18 @@ c_parser_label (c_parser *parser)
else
FALLTHROUGH_LABEL_P (CASE_LABEL (label)) = fallthrough_p;
+ /* Standard attributes are only allowed here if they start a
+ statement, not a declaration (including the case of an
+ attribute-declaration with only attributes). */
+ bool have_std_attrs
+ = c_parser_nth_token_starts_std_attributes (parser, 1);
+ tree std_attrs = NULL_TREE;
+ if (have_std_attrs)
+ std_attrs = c_parser_std_attribute_specifier_sequence (parser);
+
/* Allow '__attribute__((fallthrough));'. */
- if (c_parser_next_token_is_keyword (parser, RID_ATTRIBUTE))
+ if (!have_std_attrs
+ && c_parser_next_token_is_keyword (parser, RID_ATTRIBUTE))
{
location_t loc = c_parser_peek_token (parser)->location;
tree attrs = c_parser_gnu_attributes (parser);
@@ -5502,7 +5722,9 @@ c_parser_label (c_parser *parser)
warning_at (loc, OPT_Wattributes, "only attribute %<fallthrough%>"
" can be applied to a null statement");
}
- if (c_parser_next_tokens_start_declaration (parser))
+ if (c_parser_next_tokens_start_declaration (parser)
+ || (have_std_attrs
+ && c_parser_next_token_is (parser, CPP_SEMICOLON)))
{
error_at (c_parser_peek_token (parser)->location,
"a label can only be part of a statement and "
@@ -5511,8 +5733,11 @@ c_parser_label (c_parser *parser)
/*static_assert_ok*/ true,
/*empty_ok*/ true, /*nested*/ true,
/*start_attr_ok*/ true, NULL,
- vNULL);
+ vNULL, have_std_attrs, std_attrs);
}
+ else if (std_attrs)
+ /* Nonempty attributes on the following statement are ignored. */
+ c_warn_unused_attributes (std_attrs);
}
}
@@ -5520,17 +5745,18 @@ c_parser_label (c_parser *parser)
statement:
labeled-statement
- compound-statement
+ attribute-specifier-sequence[opt] compound-statement
expression-statement
- selection-statement
- iteration-statement
- jump-statement
+ attribute-specifier-sequence[opt] selection-statement
+ attribute-specifier-sequence[opt] iteration-statement
+ attribute-specifier-sequence[opt] jump-statement
labeled-statement:
- label statement
+ attribute-specifier-sequence[opt] label statement
expression-statement:
expression[opt] ;
+ attribute-specifier-sequence expression ;
selection-statement:
if-statement
@@ -5550,7 +5776,7 @@ c_parser_label (c_parser *parser)
GNU extensions:
statement:
- asm-statement
+ attribute-specifier-sequence[opt] asm-statement
jump-statement:
goto * expression ;
@@ -5561,9 +5787,9 @@ c_parser_label (c_parser *parser)
Objective-C:
statement:
- objc-throw-statement
- objc-try-catch-statement
- objc-synchronized-statement
+ attribute-specifier-sequence[opt] objc-throw-statement
+ attribute-specifier-sequence[opt] objc-try-catch-statement
+ attribute-specifier-sequence[opt] objc-synchronized-statement
objc-throw-statement:
@throw expression ;
@@ -5572,7 +5798,7 @@ c_parser_label (c_parser *parser)
OpenACC:
statement:
- openacc-construct
+ attribute-specifier-sequence[opt] openacc-construct
openacc-construct:
parallel-construct
@@ -5595,7 +5821,7 @@ c_parser_label (c_parser *parser)
OpenMP:
statement:
- openmp-construct
+ attribute-specifier-sequence[opt] openmp-construct
openmp-construct:
parallel-construct
@@ -5654,8 +5880,8 @@ c_parser_label (c_parser *parser)
Transactional Memory:
statement:
- transaction-statement
- transaction-cancel-statement
+ attribute-specifier-sequence[opt] transaction-statement
+ attribute-specifier-sequence[opt] transaction-cancel-statement
IF_P is used to track whether there's a (possibly labeled) if statement
which is not enclosed in braces and has an else clause. This is used to
@@ -5671,7 +5897,8 @@ c_parser_statement (c_parser *parser, bool *if_p, location_t *loc_after_labels)
}
/* Parse a statement, other than a labeled statement. CHAIN is a vector
- of if-else-if conditions.
+ of if-else-if conditions. All labels and standard attributes have
+ been parsed in the caller.
IF_P is used to track whether there's a (possibly labeled) if statement
which is not enclosed in braces and has an else clause. This is used to
@@ -6394,7 +6621,8 @@ c_parser_for_statement (c_parser *parser, bool ivdep, unsigned short unroll,
c_parser_consume_token (parser);
c_finish_expr_stmt (loc, NULL_TREE);
}
- else if (c_parser_next_tokens_start_declaration (parser))
+ else if (c_parser_next_tokens_start_declaration (parser)
+ || c_parser_nth_token_starts_std_attributes (parser, 1))
{
c_parser_declaration_or_fndef (parser, true, true, true, true, true,
&object_expression, vNULL);
@@ -6421,7 +6649,8 @@ c_parser_for_statement (c_parser *parser, bool ivdep, unsigned short unroll,
&& (c_parser_peek_2nd_token (parser)->keyword
== RID_EXTENSION))
c_parser_consume_token (parser);
- if (c_token_starts_declaration (c_parser_peek_2nd_token (parser)))
+ if (c_token_starts_declaration (c_parser_peek_2nd_token (parser))
+ || c_parser_nth_token_starts_std_attributes (parser, 2))
{
int ext;
ext = disable_extension_diagnostics ();
@@ -10983,7 +11212,7 @@ c_parser_objc_method_decl (c_parser *parser, bool is_class_method,
(parser, attributes) ;
break;
}
- parm = c_parser_parameter_declaration (parser, NULL_TREE);
+ parm = c_parser_parameter_declaration (parser, NULL_TREE, false);
if (parm == NULL)
break;
parms = chainon (parms,
@@ -11148,7 +11377,7 @@ c_parser_objc_try_catch_finally_statement (c_parser *parser)
{
/* We have "@catch (NSException *exception)" or something
like that. Parse the parameter declaration. */
- parm = c_parser_parameter_declaration (parser, NULL_TREE);
+ parm = c_parser_parameter_declaration (parser, NULL_TREE, false);
if (parm == NULL)
parameter_declaration = error_mark_node;
else
@@ -16490,12 +16719,12 @@ c_parser_oacc_routine (c_parser *parser, enum pragma_context context)
while (c_parser_next_token_is (parser, CPP_KEYWORD)
&& c_parser_peek_token (parser)->keyword == RID_EXTENSION);
c_parser_declaration_or_fndef (parser, true, true, true, false, true,
- NULL, vNULL, &data);
+ NULL, vNULL, false, NULL, &data);
restore_extension_diagnostics (ext);
}
else
c_parser_declaration_or_fndef (parser, true, true, true, false, true,
- NULL, vNULL, &data);
+ NULL, vNULL, false, NULL, &data);
}
}