diff options
author | Tristan Gingold <tgingold@free.fr> | 2017-11-08 05:45:55 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2017-11-08 05:45:55 +0100 |
commit | 9e01b1290d44a275160a0d87454e35918fe0d2e5 (patch) | |
tree | 162a7dbc77d34b87fd8d09105b0c5e26ae4cf70b /src/vhdl/iirs.adb | |
parent | e663f3eaa705b80acdb7c97f52ac50b4beb76b7d (diff) | |
download | ghdl-9e01b1290d44a275160a0d87454e35918fe0d2e5.tar.gz ghdl-9e01b1290d44a275160a0d87454e35918fe0d2e5.tar.bz2 ghdl-9e01b1290d44a275160a0d87454e35918fe0d2e5.zip |
Use flist for disconnection specification and component specification.
Diffstat (limited to 'src/vhdl/iirs.adb')
-rw-r--r-- | src/vhdl/iirs.adb | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/vhdl/iirs.adb b/src/vhdl/iirs.adb index 2fb4f5d34..d3210dfaa 100644 --- a/src/vhdl/iirs.adb +++ b/src/vhdl/iirs.adb @@ -1275,20 +1275,20 @@ package body Iirs is Set_Field4 (Val, Attr); end Set_Attribute_Specification; - function Get_Signal_List (Target : Iir) return Iir_List is + function Get_Signal_List (Target : Iir) return Iir_Flist is begin pragma Assert (Target /= Null_Iir); pragma Assert (Has_Signal_List (Get_Kind (Target)), "no field Signal_List"); - return Iir_To_Iir_List (Get_Field3 (Target)); + return Iir_To_Iir_Flist (Get_Field3 (Target)); end Get_Signal_List; - procedure Set_Signal_List (Target : Iir; List : Iir_List) is + procedure Set_Signal_List (Target : Iir; List : Iir_Flist) is begin pragma Assert (Target /= Null_Iir); pragma Assert (Has_Signal_List (Get_Kind (Target)), "no field Signal_List"); - Set_Field3 (Target, Iir_List_To_Iir (List)); + Set_Field3 (Target, Iir_Flist_To_Iir (List)); end Set_Signal_List; function Get_Designated_Entity (Val : Iir_Attribute_Value) return Iir is @@ -4283,20 +4283,20 @@ package body Iirs is Set_Field4 (Target, Name); end Set_Component_Name; - function Get_Instantiation_List (Target : Iir) return Iir_List is + function Get_Instantiation_List (Target : Iir) return Iir_Flist is begin pragma Assert (Target /= Null_Iir); pragma Assert (Has_Instantiation_List (Get_Kind (Target)), "no field Instantiation_List"); - return Iir_To_Iir_List (Get_Field1 (Target)); + return Iir_To_Iir_Flist (Get_Field1 (Target)); end Get_Instantiation_List; - procedure Set_Instantiation_List (Target : Iir; List : Iir_List) is + procedure Set_Instantiation_List (Target : Iir; List : Iir_Flist) is begin pragma Assert (Target /= Null_Iir); pragma Assert (Has_Instantiation_List (Get_Kind (Target)), "no field Instantiation_List"); - Set_Field1 (Target, Iir_List_To_Iir (List)); + Set_Field1 (Target, Iir_Flist_To_Iir (List)); end Set_Instantiation_List; function Get_Entity_Aspect (Target : Iir_Binding_Indication) return Iir is |