aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2016-12-26 15:07:23 +0100
committerTristan Gingold <tgingold@free.fr>2016-12-26 15:09:36 +0100
commita3d093d026ea7ca88d066f9a287ca155f1687a79 (patch)
treedc616b537dbb27cd5a149fa4b711e55b83134bf1 /src
parentab85386b440300ccec2ae19989cc604f754489da (diff)
downloadghdl-a3d093d026ea7ca88d066f9a287ca155f1687a79.tar.gz
ghdl-a3d093d026ea7ca88d066f9a287ca155f1687a79.tar.bz2
ghdl-a3d093d026ea7ca88d066f9a287ca155f1687a79.zip
trans-chap3: constify.
Diffstat (limited to 'src')
-rw-r--r--src/vhdl/translate/trans-chap3.adb8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/vhdl/translate/trans-chap3.adb b/src/vhdl/translate/trans-chap3.adb
index 3b0ad822c..976e263ae 100644
--- a/src/vhdl/translate/trans-chap3.adb
+++ b/src/vhdl/translate/trans-chap3.adb
@@ -360,7 +360,7 @@ package body Trans.Chap3 is
Info.Ortho_Type (Mode_Value) := New_Signed_Type (64);
Info.Type_Mode := Type_Mode_P64;
end case;
- -- Phyiscals are always in their ranges.
+ -- Physical types are always in their ranges.
Info.T.Nocheck_Low := True;
Info.T.Nocheck_Hi := True;
@@ -996,10 +996,10 @@ package body Trans.Chap3 is
procedure Translate_Record_Type (Def : Iir_Record_Type_Definition)
is
+ Info : constant Type_Info_Acc := Get_Info (Def);
+ List : constant Iir_List := Get_Elements_Declaration_List (Def);
El_List : O_Element_List;
- List : Iir_List;
El : Iir_Element_Declaration;
- Info : Type_Info_Acc;
Field_Info : Ortho_Info_Acc;
El_Type : Iir;
El_Tinfo : Type_Info_Acc;
@@ -1011,9 +1011,7 @@ package body Trans.Chap3 is
Mark : Id_Mark_Type;
begin
- Info := Get_Info (Def);
Need_Size := False;
- List := Get_Elements_Declaration_List (Def);
-- First, translate the anonymous type of the elements.
for I in Natural loop