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.adb6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/synth/synth-vhdl_expr.adb b/src/synth/synth-vhdl_expr.adb
index 80d1a22fc..6433fa616 100644
--- a/src/synth/synth-vhdl_expr.adb
+++ b/src/synth/synth-vhdl_expr.adb
@@ -539,9 +539,11 @@ package body Synth.Vhdl_Expr is
then
case Utype.Kind is
when Type_Unbounded_Array =>
- return Create_Array_Type (Stype.Abound, Utype.Ulast, Res_El);
+ return Create_Array_Type
+ (Stype.Abound, False, Utype.Ulast, Res_El);
when Type_Unbounded_Vector =>
- return Create_Vector_Type (Stype.Abound, Res_El);
+ return Create_Vector_Type
+ (Stype.Abound, False, Res_El);
when others =>
raise Internal_Error;
end case;