aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/vhdl-elocations.adb.in
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-05-05 13:54:39 +0200
committerTristan Gingold <tgingold@free.fr>2019-05-05 16:03:03 +0200
commit7892c6e7945d5e4b46ddde4f18debe1c06bd3e12 (patch)
tree60b168224aaccf8421858bab2d600c1e4b0592ef /src/vhdl/vhdl-elocations.adb.in
parente4960acab358ebdd76d796554f962e755ec8954c (diff)
downloadghdl-7892c6e7945d5e4b46ddde4f18debe1c06bd3e12.tar.gz
ghdl-7892c6e7945d5e4b46ddde4f18debe1c06bd3e12.tar.bz2
ghdl-7892c6e7945d5e4b46ddde4f18debe1c06bd3e12.zip
vhdl: move nodes to vhdl.nodes_priv.
Diffstat (limited to 'src/vhdl/vhdl-elocations.adb.in')
-rw-r--r--src/vhdl/vhdl-elocations.adb.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/vhdl/vhdl-elocations.adb.in b/src/vhdl/vhdl-elocations.adb.in
index 1e2827b5f..80fab21ce 100644
--- a/src/vhdl/vhdl-elocations.adb.in
+++ b/src/vhdl/vhdl-elocations.adb.in
@@ -17,7 +17,7 @@
-- 02111-1307, USA.
with Tables;
-with Nodes;
+with Vhdl.Nodes_Priv;
with Vhdl.Elocations_Meta; use Vhdl.Elocations_Meta;
package body Vhdl.Elocations is
@@ -90,7 +90,7 @@ package body Vhdl.Elocations is
procedure Create_Elocations (N : Iir)
is
- use Nodes;
+ use Vhdl.Nodes_Priv;
Format : constant Format_Type := Get_Format (Get_Kind (N));
El : constant Iir := Elocations_Index_Table.Last;
Len : Location_Index_Type;
@@ -148,7 +148,7 @@ package body Vhdl.Elocations is
function Get_FieldX (N : Iir) return Location_Type
is
- use Nodes;
+ use Vhdl.Nodes_Priv;
Idx : Location_Index_Type;
begin
pragma Assert (N <= Elocations_Index_Table.Last);
@@ -158,7 +158,7 @@ package body Vhdl.Elocations is
procedure Set_FieldX (N : Iir; Loc : Location_Type)
is
- use Nodes;
+ use Vhdl.Nodes_Priv;
Idx : Location_Index_Type;
begin
pragma Assert (N <= Elocations_Index_Table.Last);