diff options
author | Tristan Gingold <tgingold@free.fr> | 2017-11-18 07:45:39 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2017-11-18 07:45:39 +0100 |
commit | 625d6b09f4567b876af248cf46a3e118029a84ae (patch) | |
tree | 036286ad350de3294794813586fc84be2a983f66 /src/vhdl | |
parent | 2c37b3af00ed9c469c6f5ead68531165a2e76112 (diff) | |
download | ghdl-625d6b09f4567b876af248cf46a3e118029a84ae.tar.gz ghdl-625d6b09f4567b876af248cf46a3e118029a84ae.tar.bz2 ghdl-625d6b09f4567b876af248cf46a3e118029a84ae.zip |
name_table: Add Str_Idx, and Get/Set_Info renamed to Get/Set_Name_Info.
Diffstat (limited to 'src/vhdl')
-rw-r--r-- | src/vhdl/sem_scopes.adb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vhdl/sem_scopes.adb b/src/vhdl/sem_scopes.adb index 30d33d8fc..907b5eeff 100644 --- a/src/vhdl/sem_scopes.adb +++ b/src/vhdl/sem_scopes.adb @@ -142,13 +142,13 @@ package body Sem_Scopes is function Get_Interpretation_Raw (Id : Name_Id) return Name_Interpretation_Type is begin - return Name_Interpretation_Type (Name_Table.Get_Info (Id)); + return Name_Interpretation_Type (Name_Table.Get_Name_Info (Id)); end Get_Interpretation_Raw; procedure Set_Interpretation (Id : Name_Id; Inter : Name_Interpretation_Type) is begin - Name_Table.Set_Info (Id, Int32 (Inter)); + Name_Table.Set_Name_Info (Id, Int32 (Inter)); end Set_Interpretation; function Get_Interpretation_From_Raw (Inter : Name_Interpretation_Type) |