diff options
Diffstat (limited to 'boot/parser.yy')
| -rw-r--r-- | boot/parser.yy | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/boot/parser.yy b/boot/parser.yy index 6ada702..aace9a1 100644 --- a/boot/parser.yy +++ b/boot/parser.yy @@ -93,7 +93,6 @@ along with GCC; see the file COPYING3. If not see PROCEDURE "proc" TYPE "type" RECORD "record" - UNION "union" EXTERN "extern" IF "if" WHILE "while" @@ -467,10 +466,6 @@ type_expression: { $$ = new boot::record_type_expression(boot::make_position(@1), std::move($5), std::move($3)); } - | "union" required_fields "end" - { - $$ = new boot::union_type_expression(boot::make_position(@1), std::move($2)); - } | "proc" procedure_heading { $$ = $2; |
