diff options
author | Tristan Gingold <tgingold@free.fr> | 2023-05-01 10:11:41 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2023-05-01 10:11:41 +0200 |
commit | 5c6d5048c222e06cab457dc5f2dc9035bd9a05d6 (patch) | |
tree | ebc5dfefb5b7d9746cde81a4b1fbeeeeee748773 /src/vhdl/vhdl-sem_expr.adb | |
parent | ae9bcf634f5a556a3768adb866df82435e20fb10 (diff) | |
download | ghdl-5c6d5048c222e06cab457dc5f2dc9035bd9a05d6.tar.gz ghdl-5c6d5048c222e06cab457dc5f2dc9035bd9a05d6.tar.bz2 ghdl-5c6d5048c222e06cab457dc5f2dc9035bd9a05d6.zip |
vhdl-sem_expr: adjust check of aggregate range
For #2422
Diffstat (limited to 'src/vhdl/vhdl-sem_expr.adb')
-rw-r--r-- | src/vhdl/vhdl-sem_expr.adb | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/vhdl/vhdl-sem_expr.adb b/src/vhdl/vhdl-sem_expr.adb index be60e12c8..95842c903 100644 --- a/src/vhdl/vhdl-sem_expr.adb +++ b/src/vhdl/vhdl-sem_expr.adb @@ -3863,15 +3863,21 @@ package body Vhdl.Sem_Expr is Expr_Staticness : Iir_Staticness; Info : Array_Aggr_Info renames Infos (Dim); + + Is_Sub_Range : Boolean; begin -- Analyze choices (for aggregate but not for strings). if Get_Kind (Aggr) = Iir_Kind_Aggregate then -- By default, consider the aggregate can be statically built. Set_Aggregate_Expand_Flag (Aggr, True); + -- True if the aggregate (and not the context) defines its range. + Is_Sub_Range := + not (Constrained and then Get_Index_Constraint_Flag (A_Type)); + Assoc_Chain := Get_Association_Choices_Chain (Aggr); Sem_Choices_Range (Assoc_Chain, Index_Type, Low, High, - Get_Location (Aggr), not Constrained, False); + Get_Location (Aggr), Is_Sub_Range, False); Set_Association_Choices_Chain (Aggr, Assoc_Chain); -- Update infos. |