Commit b919445a by Zack Weinberg Committed by Zack Weinberg

c-parse.in: Apply Ulrich's changes from c-parse.y.

	* c-parse.in: Apply Ulrich's changes from c-parse.y.
	* c-parse.y, objc/objc-parse.y, c-parse.c, objc/objc-parse.c:
	Regenerate.

From-SVN: r31698
parent 59495f38
2000-01-29 Zack Weinberg <zack@wolery.cumb.org>
* c-parse.in: Apply Ulrich's changes from c-parse.y.
* c-parse.y, objc/objc-parse.y, c-parse.c, objc/objc-parse.c:
Regenerate.
2000-01-29 Zack Weinberg <zack@wolery.cumb.org>
* cpperror.c (cpp_file_line_for_message): If 'line' is zero,
just print "<command line>". If 'filename' is null or an
empty string, print "<stdin>" for the filename.
......
......@@ -1265,7 +1265,7 @@ static const short yycheck[] = { 38,
51, 52, 53, 54
};
/* -*-C-*- Note some compilers choke on comments on `#line' lines. */
#line 3 "/usr/share/bison.simple"
#line 3 "/usr/share/misc/bison.simple"
/* This file comes from bison-1.28. */
/* Skeleton output parser for bison,
......@@ -1479,7 +1479,7 @@ __yy_memcpy (char *to, char *from, unsigned int count)
#endif
#endif
#line 217 "/usr/share/bison.simple"
#line 217 "/usr/share/misc/bison.simple"
/* The user can define YYPARSE_PARAM as the name of an argument to be passed
into yyparse. The argument should have type void *.
......@@ -3826,7 +3826,7 @@ case 407:
break;}
}
/* the action file gets copied in in place of this dollarsign */
#line 543 "/usr/share/bison.simple"
#line 543 "/usr/share/misc/bison.simple"
yyvsp -= yylen;
yyssp -= yylen;
......
......@@ -519,7 +519,7 @@ cast_expr:
tree type = $2;
finish_init ();
if (pedantic && ! flag_isoc9x)
if (pedantic && ! flag_isoc99)
pedwarn ("ANSI C forbids constructor expressions");
if (TYPE_NAME (type) != 0)
{
......@@ -1403,8 +1403,8 @@ parm_declarator:
ifc
| parm_declarator '[' '*' ']' %prec '.'
{ $$ = build_nt (ARRAY_REF, $1, NULL_TREE);
if (! flag_isoc9x)
error ("`[*]' in parameter declaration only allowed in ISO C 9x");
if (! flag_isoc99)
error ("`[*]' in parameter declaration only allowed in ISO C 99");
}
end ifc
| parm_declarator '[' expr ']' %prec '.'
......@@ -1439,8 +1439,8 @@ notype_declarator:
ifc
| notype_declarator '[' '*' ']' %prec '.'
{ $$ = build_nt (ARRAY_REF, $1, NULL_TREE);
if (! flag_isoc9x)
error ("`[*]' in parameter declaration only allowed in ISO C 9x");
if (! flag_isoc99)
error ("`[*]' in parameter declaration only allowed in ISO C 99");
}
end ifc
| notype_declarator '[' expr ']' %prec '.'
......@@ -1523,7 +1523,7 @@ maybecomma:
maybecomma_warn:
/* empty */
| ','
{ if (pedantic && ! flag_isoc9x)
{ if (pedantic && ! flag_isoc99)
pedwarn ("comma at end of enumerator list"); }
;
......
......@@ -2571,7 +2571,7 @@ case 65:
tree type = yyvsp[-5].ttype;
finish_init ();
if (pedantic && ! flag_isoc9x)
if (pedantic && ! flag_isoc99)
pedwarn ("ANSI C forbids constructor expressions");
if (TYPE_NAME (type) != 0)
{
......@@ -3542,7 +3542,7 @@ case 267:
break;}
case 271:
#line 1463 "objc-parse.y"
{ if (pedantic && ! flag_isoc9x)
{ if (pedantic && ! flag_isoc99)
pedwarn ("comma at end of enumerator list"); ;
break;}
case 272:
......
......@@ -500,7 +500,7 @@ cast_expr:
tree type = $2;
finish_init ();
if (pedantic && ! flag_isoc9x)
if (pedantic && ! flag_isoc99)
pedwarn ("ANSI C forbids constructor expressions");
if (TYPE_NAME (type) != 0)
{
......@@ -1460,7 +1460,7 @@ maybecomma:
maybecomma_warn:
/* empty */
| ','
{ if (pedantic && ! flag_isoc9x)
{ if (pedantic && ! flag_isoc99)
pedwarn ("comma at end of enumerator list"); }
;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment