>
> >> + token = cp_lexer_peek_token (parser->lexer);
> >> + if (token->type != CPP_SEMICOLON)
> >> + {
> >> + error_at (token->location, "%<_Cilk_sync%> must be
> >> followed"
> >> + " by semicolon");
> >> + postfix_expression = error_mark_node;
> >> + break;
> >> + }
>
> Any reason not to use cp_parser_require here?Right! Will try it and repost the patch. Thanks! Igor > > Jason
