diff options
author | Tristan Gingold <tgingold@free.fr> | 2023-01-18 21:24:42 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2023-01-20 21:54:35 +0100 |
commit | a53b01b53c3c8225a832e8f20d019ac39d68ce38 (patch) | |
tree | eda4ed66d098800c9897bea875db8c9a0c4bb25f /src/synth/elab-vhdl_annotations.ads | |
parent | 79542b1680f1dcd3e746a584ff1bf198f50c8486 (diff) | |
download | ghdl-a53b01b53c3c8225a832e8f20d019ac39d68ce38.tar.gz ghdl-a53b01b53c3c8225a832e8f20d019ac39d68ce38.tar.bz2 ghdl-a53b01b53c3c8225a832e8f20d019ac39d68ce38.zip |
elab: Rename Get/Set_Info to Get/Set_Ann
Diffstat (limited to 'src/synth/elab-vhdl_annotations.ads')
-rw-r--r-- | src/synth/elab-vhdl_annotations.ads | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/synth/elab-vhdl_annotations.ads b/src/synth/elab-vhdl_annotations.ads index b8888adf0..3e48dbf0a 100644 --- a/src/synth/elab-vhdl_annotations.ads +++ b/src/synth/elab-vhdl_annotations.ads @@ -107,16 +107,17 @@ package Elab.Vhdl_Annotations is procedure Disp_Vhdl_Info (Node : Iir); procedure Disp_Tree_Info (Node : Iir); + -- Infos for top-level packages. Global_Info : Sim_Info_Acc; -- Annotations are used to collect informations for elaboration and to -- locate iir_value_literal for signals, variables or constants. -- Get/Set annotation fied from/to an iir. - procedure Set_Info (Target : Iir; Info : Sim_Info_Acc); - pragma Inline (Set_Info); - function Get_Info (Target : Iir) return Sim_Info_Acc; - pragma Inline (Get_Info); + procedure Set_Ann (Target : Iir; Info : Sim_Info_Acc); + pragma Inline (Set_Ann); + function Get_Ann (Target : Iir) return Sim_Info_Acc; + pragma Inline (Get_Ann); -- Expand the annotation table. This is automatically done by Annotate, -- to be used only by debugger. |