diff options
| -rw-r--r-- | gcc/ChangeLog | 11 | ||||
| -rw-r--r-- | gcc/gengtype-yacc.y | 2 |
2 files changed, 10 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 462feb7..76de386 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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> diff --git a/gcc/gengtype-yacc.y b/gcc/gengtype-yacc.y index 18b65f1..f6a9bac 100644 --- a/gcc/gengtype-yacc.y +++ b/gcc/gengtype-yacc.y @@ -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; } + ; %% |
