aboutsummaryrefslogtreecommitdiffstats
path: root/src/libraries.adb
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/libraries.adb
parent5c10bacd0cd58926839b8904e10ef0693930bddc (diff)
downloadghdl-f325fa6fc787f23239d8de2a41a6d9c37d23b991.tar.gz
ghdl-f325fa6fc787f23239d8de2a41a6d9c37d23b991.tar.bz2
ghdl-f325fa6fc787f23239d8de2a41a6d9c37d23b991.zip
vhdl: move iirs_utils to vhdl.utils
Diffstat (limited to 'src/libraries.adb')
-rw-r--r--src/libraries.adb6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libraries.adb b/src/libraries.adb
index 716438ca6..0f552e911 100644
--- a/src/libraries.adb
+++ b/src/libraries.adb
@@ -22,7 +22,7 @@ with Logging; use Logging;
with Tables;
with Errorout; use Errorout;
with Vhdl.Scanner;
-with Iirs_Utils; use Iirs_Utils;
+with Vhdl.Utils; use Vhdl.Utils;
with Name_Table; use Name_Table;
with Str_Table;
with Vhdl.Tokens;
@@ -722,7 +722,7 @@ package body Libraries is
end if;
-- Check if the library has already been loaded.
- Library := Iirs_Utils.Find_Name_In_Chain (Libraries_Chain, Ident);
+ Library := Vhdl.Utils.Find_Name_In_Chain (Libraries_Chain, Ident);
if Library /= Null_Iir then
return Library;
end if;
@@ -918,7 +918,7 @@ package body Libraries is
-- Keep direct reference (for speed-up).
if Get_Kind (El) /= Iir_Kind_Design_Unit then
- Iirs_Utils.Free_Recursive (El);
+ Vhdl.Utils.Free_Recursive (El);
Set_Element (It, Unit);
end if;