aboutsummaryrefslogtreecommitdiffstats
path: root/src/name_table.ads
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2017-11-18 07:45:39 +0100
committerTristan Gingold <tgingold@free.fr>2017-11-18 07:45:39 +0100
commit625d6b09f4567b876af248cf46a3e118029a84ae (patch)
tree036286ad350de3294794813586fc84be2a983f66 /src/name_table.ads
parent2c37b3af00ed9c469c6f5ead68531165a2e76112 (diff)
downloadghdl-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/name_table.ads')
-rw-r--r--src/name_table.ads8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/name_table.ads b/src/name_table.ads
index 2ad733f28..eb604c8f1 100644
--- a/src/name_table.ads
+++ b/src/name_table.ads
@@ -82,10 +82,10 @@ package Name_Table is
-- Get and set the info field associated with each identifier.
-- Used to store interpretations of the name.
- function Get_Info (Id: Name_Id) return Int32;
- pragma Inline (Get_Info);
- procedure Set_Info (Id: Name_Id; Info: Int32);
- pragma Inline (Set_Info);
+ function Get_Name_Info (Id : Name_Id) return Int32;
+ pragma Inline (Get_Name_Info);
+ procedure Set_Name_Info (Id : Name_Id; Info: Int32);
+ pragma Inline (Set_Name_Info);
-- Return the latest name_id used. This is only for debugging or stats.
function Last_Name_Id return Name_Id;