aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/xrefs.adb
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/xrefs.adb
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/xrefs.adb')
-rw-r--r--src/vhdl/xrefs.adb4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vhdl/xrefs.adb b/src/vhdl/xrefs.adb
index 8b66339e2..d59b34f60 100644
--- a/src/vhdl/xrefs.adb
+++ b/src/vhdl/xrefs.adb
@@ -20,7 +20,7 @@ with GNAT.Heap_Sort_A;
with Flags;
with Vhdl.Std_Package;
with Errorout; use Errorout;
-with Nodes;
+with Vhdl.Nodes_Priv;
package body Xrefs is
type Xref_Type is record
@@ -220,7 +220,7 @@ package body Xrefs is
N1 := Get_Xref_Node (Op1);
N2 := Get_Xref_Node (Op2);
if Iirs."/=" (N1, N2) then
- return Nodes."<" (N1, N2);
+ return Vhdl.Nodes_Priv."<" (N1, N2);
end if;
-- Try to get declaration first.