Remove a stray semicolon from the grammar.

This commit is contained in:
Bill Currie 2011-02-02 21:57:41 +09:00
parent 400abe7fce
commit cca829aa6b
1 changed files with 1 additions and 1 deletions

View File

@ -463,7 +463,7 @@ struct_specifier
$$ = make_spec (build_struct ($1, $2, symtab, 0)->type, 0, 0); $$ = make_spec (build_struct ($1, $2, symtab, 0)->type, 0, 0);
} }
| STRUCT tag ';' | STRUCT tag
{ {
$$ = make_spec (find_struct ($1, $2, 0)->type, 0, 0); $$ = make_spec (find_struct ($1, $2, 0)->type, 0, 0);
} }