aboutsummaryrefslogtreecommitdiffstats
path: root/src/synth/synth-decls.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/synth/synth-decls.adb')
-rw-r--r--src/synth/synth-decls.adb12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/synth/synth-decls.adb b/src/synth/synth-decls.adb
index e512b948a..3c5b5cb95 100644
--- a/src/synth/synth-decls.adb
+++ b/src/synth/synth-decls.adb
@@ -63,7 +63,6 @@ package body Synth.Decls is
procedure Synth_Type_Definition (Syn_Inst : Synth_Instance_Acc; Def : Node)
is
- pragma Unreferenced (Syn_Inst);
begin
case Get_Kind (Def) is
when Iir_Kind_Enumeration_Type_Definition =>
@@ -87,6 +86,17 @@ package body Synth.Decls is
when Iir_Kind_Access_Type_Definition
| Iir_Kind_File_Type_Definition =>
null;
+ when Iir_Kind_Record_Type_Definition =>
+ declare
+ El_List : constant Node_Flist :=
+ Get_Elements_Declaration_List (Def);
+ El : Node;
+ begin
+ for I in Flist_First .. Flist_Last (El_List) loop
+ El := Get_Nth_Element (El_List, I);
+ Synth_Declaration_Type (Syn_Inst, El);
+ end loop;
+ end;
when others =>
Error_Kind ("synth_type_definition", Def);
end case;