aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/nodes_gc.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-05-05 07:49:25 +0200
committerTristan Gingold <tgingold@free.fr>2019-05-05 08:05:11 +0200
commit85d360929d13e6b0bcb082f144883a43f402ce22 (patch)
treef8d8135e12393588b7704318f26304dfab272658 /src/vhdl/nodes_gc.adb
parent3c48cc2a70085eef63718e622b3d1a7b75a2f36f (diff)
downloadghdl-85d360929d13e6b0bcb082f144883a43f402ce22.tar.gz
ghdl-85d360929d13e6b0bcb082f144883a43f402ce22.tar.bz2
ghdl-85d360929d13e6b0bcb082f144883a43f402ce22.zip
vhdl: move std_standard package to vhdl child.
Diffstat (limited to 'src/vhdl/nodes_gc.adb')
-rw-r--r--src/vhdl/nodes_gc.adb8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/vhdl/nodes_gc.adb b/src/vhdl/nodes_gc.adb
index 1ee3696ab..eb7d4dee3 100644
--- a/src/vhdl/nodes_gc.adb
+++ b/src/vhdl/nodes_gc.adb
@@ -24,7 +24,7 @@ with Nodes_Meta; use Nodes_Meta;
with Errorout; use Errorout;
with Libraries;
with Vhdl.Disp_Tree;
-with Std_Package;
+with Vhdl.Std_Package;
package body Nodes_GC is
@@ -375,7 +375,7 @@ package body Nodes_GC is
-- but referenced nodes in std_package.
procedure Mark_Init
is
- use Std_Package;
+ use Vhdl.Std_Package;
begin
Markers := new Marker_Array'(Null_Iir .. Iirs.Get_Last_Node => False);
@@ -389,7 +389,7 @@ package body Nodes_GC is
-- Marks known nodes that aren't owned.
procedure Mark_Not_Owned
is
- use Std_Package;
+ use Vhdl.Std_Package;
begin
-- These nodes are owned by type/subtype declarations, so unmark them
-- before marking their owner.
@@ -478,7 +478,7 @@ package body Nodes_GC is
procedure Report_Unreferenced
is
- use Std_Package;
+ use Vhdl.Std_Package;
El : Iir;
Nbr_Unreferenced : Natural;
begin