diff options
author | Tristan Gingold <tgingold@free.fr> | 2021-11-03 07:45:23 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2021-11-03 22:10:04 +0100 |
commit | 0c12112fdd8a69f50a4b54e98755f3bc0e2d8441 (patch) | |
tree | 27bdea62fb1d4f325592c422600ad5bd51a9f368 /src | |
parent | f43dcd402ed7783cda796675c6147ec0e68d2714 (diff) | |
download | ghdl-0c12112fdd8a69f50a4b54e98755f3bc0e2d8441.tar.gz ghdl-0c12112fdd8a69f50a4b54e98755f3bc0e2d8441.tar.bz2 ghdl-0c12112fdd8a69f50a4b54e98755f3bc0e2d8441.zip |
trans-chap7: convert to base type for array-element operation. For #1898
Diffstat (limited to 'src')
-rw-r--r-- | src/vhdl/translate/trans-chap7.adb | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/vhdl/translate/trans-chap7.adb b/src/vhdl/translate/trans-chap7.adb index 8b34b87f9..d1c287739 100644 --- a/src/vhdl/translate/trans-chap7.adb +++ b/src/vhdl/translate/trans-chap7.adb @@ -2014,7 +2014,7 @@ package body Trans.Chap7 is Loc : Iir) return O_Enode is - Arr_Type : constant Iir := Get_Type (Left); + Arr_Type : constant Iir := Get_Base_Type (Get_Type (Left)); Res_Btype : constant Iir := Get_Base_Type (Res_Type); Res_Info : constant Type_Info_Acc := Get_Info (Res_Btype); Base_Ptr_Type : constant O_Tnode := @@ -2027,8 +2027,10 @@ package body Trans.Chap7 is Res : Mnode; begin -- Translate the array. - Arr := Stabilize (E2M (Translate_Expression (Left), - Get_Info (Arr_Type), Mode_Value)); + -- Need to convert to the base type as the subtype may not be + -- translated (for strings). + Arr := Stabilize (E2M (Translate_Expression (Left, Arr_Type), + Get_Info (Arr_Type), Mode_Value)); -- Extract its length. Len := Create_Temp_Init |