diff options
Diffstat (limited to 'src/vhdl/parse.adb')
-rw-r--r-- | src/vhdl/parse.adb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vhdl/parse.adb b/src/vhdl/parse.adb index a4a7b904b..f7085c081 100644 --- a/src/vhdl/parse.adb +++ b/src/vhdl/parse.adb @@ -3872,7 +3872,7 @@ package body Parse is when Tok_Colon => declare Res : Iir_Group_Declaration; - List : Iir_Group_Constituent_List; + List : Iir_List; begin Res := Create_Iir (Iir_Kind_Group_Declaration); Set_Location (Res, Loc); @@ -5888,7 +5888,7 @@ package body Parse is -- -- [ LRM93 8.1 ] -- sensitivity_list ::= SIGNAL_name { , SIGNAL_name } - procedure Parse_Sensitivity_List (List: Iir_Designator_List) + procedure Parse_Sensitivity_List (List: Iir_List) is El : Iir; begin |