aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/iirs.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2017-11-07 05:35:24 +0100
committerTristan Gingold <tgingold@free.fr>2017-11-07 05:35:24 +0100
commit75b1d013e603af6e7d0e27def4f34b5914a6e6fd (patch)
tree4975cf6990bff96f134d7a89fcf673f87cf168ba /src/vhdl/iirs.adb
parentc988ed8c1d6bfa36c85b27771f26a9e8f0bbeec0 (diff)
downloadghdl-75b1d013e603af6e7d0e27def4f34b5914a6e6fd.tar.gz
ghdl-75b1d013e603af6e7d0e27def4f34b5914a6e6fd.tar.bz2
ghdl-75b1d013e603af6e7d0e27def4f34b5914a6e6fd.zip
Use Flist for simple_aggregate.
Diffstat (limited to 'src/vhdl/iirs.adb')
-rw-r--r--src/vhdl/iirs.adb8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/vhdl/iirs.adb b/src/vhdl/iirs.adb
index 9283e8ebb..286055d2a 100644
--- a/src/vhdl/iirs.adb
+++ b/src/vhdl/iirs.adb
@@ -997,20 +997,20 @@ package body Iirs is
Set_Field5 (Lit, Conv.Field5);
end Set_Fp_Value;
- function Get_Simple_Aggregate_List (Target : Iir) return Iir_List is
+ function Get_Simple_Aggregate_List (Target : Iir) return Iir_Flist is
begin
pragma Assert (Target /= Null_Iir);
pragma Assert (Has_Simple_Aggregate_List (Get_Kind (Target)),
"no field Simple_Aggregate_List");
- return Iir_To_Iir_List (Get_Field4 (Target));
+ return Iir_To_Iir_Flist (Get_Field4 (Target));
end Get_Simple_Aggregate_List;
- procedure Set_Simple_Aggregate_List (Target : Iir; List : Iir_List) is
+ procedure Set_Simple_Aggregate_List (Target : Iir; List : Iir_Flist) is
begin
pragma Assert (Target /= Null_Iir);
pragma Assert (Has_Simple_Aggregate_List (Get_Kind (Target)),
"no field Simple_Aggregate_List");
- Set_Field4 (Target, Iir_List_To_Iir (List));
+ Set_Field4 (Target, Iir_Flist_To_Iir (List));
end Set_Simple_Aggregate_List;
function Get_String8_Id (Lit : Iir) return String8_Id is