Commit 5fece182 by Zack Weinberg

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

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

From-SVN: r80250
parent 31023ac5
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> 2004-03-30 David Edelsohn <edelsohn@gnu.org>
* config/rs6000/rs6000.md (tls_gd_32, tls_gd_64, * config/rs6000/rs6000.md (tls_gd_32, tls_gd_64,
...@@ -22,9 +27,9 @@ ...@@ -22,9 +27,9 @@
2004-03-29 Fariborz Jahanian <fjahanian@apple.com> 2004-03-29 Fariborz Jahanian <fjahanian@apple.com>
* fold-const.c (fold): Reassociate multiply expression * fold-const.c (fold): Reassociate multiply expression
with an adjacent non-multiply expression to use with an adjacent non-multiply expression to use
architecture's multiply-add instruction. architecture's multiply-add instruction.
2004-03-30 Zack Weinberg <zack@codesourcery.com> 2004-03-30 Zack Weinberg <zack@codesourcery.com>
......
...@@ -274,6 +274,7 @@ option: ID ...@@ -274,6 +274,7 @@ option: ID
{ $$ = create_option ($1, (void *)$3); } { $$ = create_option ($1, (void *)$3); }
| type_option '(' type ')' | type_option '(' type ')'
{ $$ = create_option ($1, adjust_field_type ($3, NULL)); } { $$ = create_option ($1, adjust_field_type ($3, NULL)); }
;
optionseq: option optionseq: option
{ {
...@@ -302,4 +303,5 @@ stringseq: STRING ...@@ -302,4 +303,5 @@ stringseq: STRING
free ((void *)$2); free ((void *)$2);
$$ = s; $$ = s;
} }
;
%% %%
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