aboutsummaryrefslogtreecommitdiffstats
path: root/src/ghdldrv/ghdlrun.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/ghdldrv/ghdlrun.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/ghdldrv/ghdlrun.adb')
-rw-r--r--src/ghdldrv/ghdlrun.adb8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ghdldrv/ghdlrun.adb b/src/ghdldrv/ghdlrun.adb
index 6763498f7..f8b3adaaf 100644
--- a/src/ghdldrv/ghdlrun.adb
+++ b/src/ghdldrv/ghdlrun.adb
@@ -32,7 +32,7 @@ with Ortho_Jit;
with Ortho_Nodes; use Ortho_Nodes;
with Trans_Decls;
with Iirs; use Iirs;
-with Std_Package;
+with Vhdl.Std_Package;
with Flags;
with Errorout; use Errorout;
with Libraries;
@@ -128,7 +128,7 @@ package body Ghdlrun is
end if;
if Time_Resolution /= 'a' then
- Std_Package.Set_Time_Resolution (Time_Resolution);
+ Vhdl.Std_Package.Set_Time_Resolution (Time_Resolution);
end if;
if Analyze_Only then
@@ -173,7 +173,7 @@ package body Ghdlrun is
end if;
if Time_Resolution = 'a' then
- Time_Resolution := Std_Package.Get_Minimal_Time_Resolution;
+ Time_Resolution := Vhdl.Std_Package.Get_Minimal_Time_Resolution;
if Time_Resolution = '?' then
Time_Resolution := 'f';
end if;
@@ -195,7 +195,7 @@ package body Ghdlrun is
end;
end if;
end if;
- Std_Package.Set_Time_Resolution (Time_Resolution);
+ Vhdl.Std_Package.Set_Time_Resolution (Time_Resolution);
-- Overwrite time resolution in flag string.
Flags.Flag_String (5) := Time_Resolution;