aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/vhdl-ieee-vital_timing.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/vhdl/vhdl-ieee-vital_timing.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/vhdl/vhdl-ieee-vital_timing.adb')
-rw-r--r--src/vhdl/vhdl-ieee-vital_timing.adb4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vhdl/vhdl-ieee-vital_timing.adb b/src/vhdl/vhdl-ieee-vital_timing.adb
index 0cd175a05..c4263672a 100644
--- a/src/vhdl/vhdl-ieee-vital_timing.adb
+++ b/src/vhdl/vhdl-ieee-vital_timing.adb
@@ -26,7 +26,7 @@ with Vhdl.Sem_Scopes;
with Vhdl.Sem_Specs;
with Vhdl.Evaluation;
with Vhdl.Sem;
-with Iirs_Utils;
+with Vhdl.Utils;
package body Vhdl.Ieee.Vital_Timing is
-- This package is based on IEEE 1076.4 1995.
@@ -1312,7 +1312,7 @@ package body Vhdl.Ieee.Vital_Timing is
-- IEEE 1076.4 4.1
-- The entity associated with a Level 0 architecture shall be a VITAL
-- Level 0 entity.
- if not Is_Vital_Level0 (Iirs_Utils.Get_Entity (Arch)) then
+ if not Is_Vital_Level0 (Utils.Get_Entity (Arch)) then
Error_Vital (+Arch, "entity associated with a VITAL level 0 "
& "architecture shall be a VITAL level 0 entity");
end if;