aboutsummaryrefslogtreecommitdiffstats
path: root/src/synth/synth-vhdl_expr.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/synth/synth-vhdl_expr.adb')
-rw-r--r--src/synth/synth-vhdl_expr.adb3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/synth/synth-vhdl_expr.adb b/src/synth/synth-vhdl_expr.adb
index 834f1de47..0ad0b4420 100644
--- a/src/synth/synth-vhdl_expr.adb
+++ b/src/synth/synth-vhdl_expr.adb
@@ -1661,6 +1661,7 @@ package body Synth.Vhdl_Expr is
(Syn_Inst : Synth_Instance_Acc; Str : Node; Str_Typ : Type_Acc)
return Valtyp
is
+ pragma Unreferenced (Syn_Inst);
pragma Assert (Get_Kind (Str) = Iir_Kind_String_Literal8);
Id : constant String8_Id := Get_String8_Id (Str);
@@ -1685,7 +1686,7 @@ package body Synth.Vhdl_Expr is
raise Internal_Error;
end case;
- El_Type := Get_Subtype_Object (Syn_Inst, Get_Element_Subtype (Str_Type));
+ El_Type := Get_Array_Element (Str_Typ);
if El_Type.Kind in Type_Nets then
Res_Type := Create_Vector_Type (Bounds, El_Type);
else