aboutsummaryrefslogtreecommitdiffstats
path: root/src/libraries.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/libraries.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/libraries.adb')
-rw-r--r--src/libraries.adb8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libraries.adb b/src/libraries.adb
index bf0d63503..716438ca6 100644
--- a/src/libraries.adb
+++ b/src/libraries.adb
@@ -28,7 +28,7 @@ with Str_Table;
with Vhdl.Tokens;
with Files_Map;
with Flags;
-with Std_Package;
+with Vhdl.Std_Package;
package body Libraries is
-- Chain of known libraries. This is also the top node of all iir node.
@@ -626,7 +626,7 @@ package body Libraries is
-- Note: the scanner shouldn't be in use, since this procedure uses it.
procedure Load_Std_Library (Build_Standard : Boolean := True)
is
- use Std_Package;
+ use Vhdl.Std_Package;
Dir : Name_Id;
begin
if Libraries_Chain /= Null_Iir then
@@ -637,7 +637,7 @@ package body Libraries is
Flags.Create_Flag_String;
Create_Virtual_Locations;
- Std_Package.Create_First_Nodes;
+ Vhdl.Std_Package.Create_First_Nodes;
-- Create the library.
Std_Library := Create_Iir (Iir_Kind_Library_Declaration);
@@ -1325,7 +1325,7 @@ package body Libraries is
Design_File := Get_Design_File_Chain (Library);
while Design_File /= Null_Iir loop
-- Ignore std.standard as there is no corresponding file.
- if Design_File = Std_Package.Std_Standard_File then
+ if Design_File = Vhdl.Std_Package.Std_Standard_File then
goto Continue;
end if;
Design_Unit := Get_First_Design_Unit (Design_File);