parse.y: Remove unused fields from union

The parser union still has a few fields that are not used by any
grammar rule. They do not have matching semantic type tags and no
action references them.

Remove the unused fields.

Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
This commit is contained in:
Lars-Peter Clausen 2026-05-13 15:20:42 -07:00
parent 2f1987bded
commit f1c71eff5c
1 changed files with 0 additions and 5 deletions

View File

@ -486,8 +486,6 @@ Module::port_t *module_declare_port(const YYLTYPE&loc, char *id,
ivl_discipline_t discipline;
hname_t*hier;
std::list<std::string>*strings;
struct str_pair_t drive;
@ -540,7 +538,6 @@ Module::port_t *module_declare_port(const YYLTYPE&loc, char *id,
struct_type_t*struct_type;
data_type_t*data_type;
class_type_t*class_type;
real_type_t::type_t real_type;
property_qualifier_t property_qualifier;
PPackage*package;
@ -570,8 +567,6 @@ Module::port_t *module_declare_port(const YYLTYPE&loc, char *id,
verireal* realtime;
PSpecPath* specpath;
std::list<index_component_t> *dimensions;
PTimingCheck::event_t* timing_check_event;
PTimingCheck::optional_args_t* spec_optional_args;