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,
......
...@@ -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