aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/vhdl-disp_tree.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-05-06 06:46:32 +0200
committerTristan Gingold <tgingold@free.fr>2019-05-06 06:46:32 +0200
commit1ed24355105d59e4b99fd888964ac4bba45fdcea (patch)
tree59c3239baf303061b9e23f18490f604d1d4f3f91 /src/vhdl/vhdl-disp_tree.adb
parent6535ea096a13d8f03547f7d5e5018c0dea46252d (diff)
downloadghdl-1ed24355105d59e4b99fd888964ac4bba45fdcea.tar.gz
ghdl-1ed24355105d59e4b99fd888964ac4bba45fdcea.tar.bz2
ghdl-1ed24355105d59e4b99fd888964ac4bba45fdcea.zip
vhdl: move nodes_meta package to vhdl child.
Diffstat (limited to 'src/vhdl/vhdl-disp_tree.adb')
-rw-r--r--src/vhdl/vhdl-disp_tree.adb6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vhdl/vhdl-disp_tree.adb b/src/vhdl/vhdl-disp_tree.adb
index d214957aa..02e750b16 100644
--- a/src/vhdl/vhdl-disp_tree.adb
+++ b/src/vhdl/vhdl-disp_tree.adb
@@ -23,7 +23,7 @@ with Name_Table;
with Str_Table;
with Files_Map;
with PSL.Dump_Tree;
-with Nodes_Meta;
+with Vhdl.Nodes_Meta;
-- Do not add a use clause for iirs_utils, as it may crash for ill-formed
-- trees, which is annoying while debugging.
@@ -376,7 +376,7 @@ package body Vhdl.Disp_Tree is
procedure Disp_Header (N : Iir)
is
- use Nodes_Meta;
+ use Vhdl.Nodes_Meta;
K : Iir_Kind;
begin
if N = Null_Iir then
@@ -439,7 +439,7 @@ package body Vhdl.Disp_Tree is
end;
declare
- use Nodes_Meta;
+ use Vhdl.Nodes_Meta;
Fields : constant Fields_Array := Get_Fields (Get_Kind (N));
F : Fields_Enum;
begin