gengtype-yacc.y (option, stringseq): Add missing terminating semicolon.

* gengtype-yacc.y (option, stringseq): Add missing
	terminating semicolon.

From-SVN: r80250
This commit is contained in:
Zack Weinberg 2004-03-31 14:45:58 +00:00
parent 31023ac57f
commit 5fece1829e
2 changed files with 10 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2004-03-31 Zack Weinberg <zack@codesourcery.com>
* gengtype-yacc.y (option, stringseq): Add missing
terminating semicolon.
2004-03-30 David Edelsohn <edelsohn@gnu.org>
* config/rs6000/rs6000.md (tls_gd_32, tls_gd_64,
@ -22,9 +27,9 @@
2004-03-29 Fariborz Jahanian <fjahanian@apple.com>
* fold-const.c (fold): Reassociate multiply expression
with an adjacent non-multiply expression to use
architecture's multiply-add instruction.
* fold-const.c (fold): Reassociate multiply expression
with an adjacent non-multiply expression to use
architecture's multiply-add instruction.
2004-03-30 Zack Weinberg <zack@codesourcery.com>

View file

@ -274,6 +274,7 @@ option: ID
{ $$ = create_option ($1, (void *)$3); }
| type_option '(' type ')'
{ $$ = create_option ($1, adjust_field_type ($3, NULL)); }
;
optionseq: option
{
@ -302,4 +303,5 @@ stringseq: STRING
free ((void *)$2);
$$ = s;
}
;
%%