aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/sem_expr.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/vhdl/sem_expr.adb')
-rw-r--r--src/vhdl/sem_expr.adb5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/vhdl/sem_expr.adb b/src/vhdl/sem_expr.adb
index 636c23188..892fbfc7a 100644
--- a/src/vhdl/sem_expr.adb
+++ b/src/vhdl/sem_expr.adb
@@ -3478,9 +3478,12 @@ package body Sem_Expr is
for I in Infos'Range loop
declare
St : constant Iir := Infos (I).Index_Subtype;
+ Rng : Iir;
begin
if St /= Null_Iir then
- Free_Iir (Get_Range_Constraint (St));
+ Rng := Get_Range_Constraint (St);
+ Free_Iir (Get_Right_Limit_Expr (Rng));
+ Free_Iir (Rng);
Free_Iir (St);
end if;
end;