aboutsummaryrefslogtreecommitdiffstats
path: root/src/ghdldrv
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-05-06 08:05:20 +0200
committerTristan Gingold <tgingold@free.fr>2019-05-06 08:05:20 +0200
commitf325fa6fc787f23239d8de2a41a6d9c37d23b991 (patch)
tree0e4a1f95060e2c84cf929f954fdb612a1bf1c340 /src/ghdldrv
parent5c10bacd0cd58926839b8904e10ef0693930bddc (diff)
downloadghdl-f325fa6fc787f23239d8de2a41a6d9c37d23b991.tar.gz
ghdl-f325fa6fc787f23239d8de2a41a6d9c37d23b991.tar.bz2
ghdl-f325fa6fc787f23239d8de2a41a6d9c37d23b991.zip
vhdl: move iirs_utils to vhdl.utils
Diffstat (limited to 'src/ghdldrv')
-rw-r--r--src/ghdldrv/ghdllocal.adb2
-rw-r--r--src/ghdldrv/ghdlprint.adb2
-rw-r--r--src/ghdldrv/ghdlsimul.adb4
3 files changed, 4 insertions, 4 deletions
diff --git a/src/ghdldrv/ghdllocal.adb b/src/ghdldrv/ghdllocal.adb
index 8b261279b..e5fe38401 100644
--- a/src/ghdldrv/ghdllocal.adb
+++ b/src/ghdldrv/ghdllocal.adb
@@ -32,7 +32,7 @@ with Errorout;
with Vhdl.Configuration;
with Files_Map;
with Options;
-with Iirs_Utils; use Iirs_Utils;
+with Vhdl.Utils; use Vhdl.Utils;
package body Ghdllocal is
-- Version of the IEEE library to use. This just change paths.
diff --git a/src/ghdldrv/ghdlprint.adb b/src/ghdldrv/ghdlprint.adb
index 1795a39f6..73f386f4a 100644
--- a/src/ghdldrv/ghdlprint.adb
+++ b/src/ghdldrv/ghdlprint.adb
@@ -26,7 +26,7 @@ with Name_Table; use Name_Table;
with Files_Map;
with Libraries;
with Errorout; use Errorout;
-with Iirs_Utils; use Iirs_Utils;
+with Vhdl.Utils; use Vhdl.Utils;
with Vhdl.Tokens;
with Vhdl.Scanner;
with Vhdl.Parse;
diff --git a/src/ghdldrv/ghdlsimul.adb b/src/ghdldrv/ghdlsimul.adb
index b465ed8cc..e3c9ced5b 100644
--- a/src/ghdldrv/ghdlsimul.adb
+++ b/src/ghdldrv/ghdlsimul.adb
@@ -30,7 +30,7 @@ with Vhdl.Std_Package;
with Libraries;
with Vhdl.Canon;
with Vhdl.Configuration;
-with Iirs_Utils;
+with Vhdl.Utils;
with Simul.Annotations;
with Simul.Elaboration;
with Simul.Simulation.Main;
@@ -113,7 +113,7 @@ package body Ghdlsimul is
Conf_Unit : constant Iir := Get_Library_Unit (Top_Conf);
Arch : constant Iir := Get_Named_Entity
(Get_Block_Specification (Get_Block_Configuration (Conf_Unit)));
- Entity : constant Iir := Iirs_Utils.Get_Entity (Arch);
+ Entity : constant Iir := Vhdl.Utils.Get_Entity (Arch);
begin
Vhdl.Configuration.Check_Entity_Declaration_Top (Entity);
if Nbr_Errors > 0 then