File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -789,15 +789,15 @@ parameter_port_list_opt:
789
789
list_of_ports : ' (' port_brace ' )' { $$ = $2 ; }
790
790
;
791
791
792
- port_declaration_brace :
793
- module_port_declaration
792
+ ansi_port_declaration_brace :
793
+ ansi_port_declaration
794
794
{ init($$ ); mts($$ , $1 ); }
795
- | port_declaration_brace ' ,' module_port_declaration
795
+ | ansi_port_declaration_brace ' ,' ansi_port_declaration
796
796
{ $$ =$1 ; mts($$ , $3 ); }
797
797
798
798
// append to last one -- required to make
799
799
// the grammar LR1
800
- | port_declaration_brace ' ,' port_identifier
800
+ | ansi_port_declaration_brace ' ,' port_identifier
801
801
{ $$ =$1 ;
802
802
exprt decl (ID_decl);
803
803
decl.add_to_operands(std::move(stack_expr($3 )));
@@ -815,7 +815,7 @@ port_declaration:
815
815
| attribute_instance_brace output_declaration { $$ =$2 ; }
816
816
;
817
817
818
- module_port_declaration :
818
+ ansi_port_declaration :
819
819
attribute_instance_brace module_port_inout_declaration { $$ =$2 ; }
820
820
| attribute_instance_brace module_port_input_declaration { $$ =$2 ; }
821
821
| attribute_instance_brace module_port_output_declaration { $$ =$2 ; }
@@ -2463,7 +2463,7 @@ output_or_level_symbol:;
2463
2463
2464
2464
next_state :;
2465
2465
2466
- list_of_port_declarations : ' (' port_declaration_brace ' )' { $$ =$2 ; }
2466
+ list_of_port_declarations : ' (' ansi_port_declaration_brace ' )' { $$ =$2 ; }
2467
2467
;
2468
2468
2469
2469
list_of_ports_opt :
You can’t perform that action at this time.
0 commit comments