aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/vhdl-ieee-vital_timing.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-05-05 08:13:25 +0200
committerTristan Gingold <tgingold@free.fr>2019-05-05 13:55:18 +0200
commitec5cdde54b8b59e6bb0ecdd05938adc8f40e8521 (patch)
treedcaf93b4dc1ddda8b069d01f2e9dd8d06124a77d /src/vhdl/vhdl-ieee-vital_timing.adb
parent79d521d70cc07e0afa6eb88632ca84aeadd3c62a (diff)
downloadghdl-ec5cdde54b8b59e6bb0ecdd05938adc8f40e8521.tar.gz
ghdl-ec5cdde54b8b59e6bb0ecdd05938adc8f40e8521.tar.bz2
ghdl-ec5cdde54b8b59e6bb0ecdd05938adc8f40e8521.zip
vhdl: move evaluation to vhdl child.
Diffstat (limited to 'src/vhdl/vhdl-ieee-vital_timing.adb')
-rw-r--r--src/vhdl/vhdl-ieee-vital_timing.adb6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vhdl/vhdl-ieee-vital_timing.adb b/src/vhdl/vhdl-ieee-vital_timing.adb
index 3a343858f..0cd175a05 100644
--- a/src/vhdl/vhdl-ieee-vital_timing.adb
+++ b/src/vhdl/vhdl-ieee-vital_timing.adb
@@ -24,7 +24,7 @@ with Name_Table;
with Vhdl.Ieee.Std_Logic_1164; use Vhdl.Ieee.Std_Logic_1164;
with Vhdl.Sem_Scopes;
with Vhdl.Sem_Specs;
-with Evaluation;
+with Vhdl.Evaluation;
with Vhdl.Sem;
with Iirs_Utils;
@@ -569,7 +569,7 @@ package body Vhdl.Ieee.Vital_Timing is
if Get_Type_Staticness (Itype) /= Locally then
return Port_Length_Unknown;
end if;
- return Evaluation.Eval_Discrete_Type_Length (Itype);
+ return Vhdl.Evaluation.Eval_Discrete_Type_Length (Itype);
else
return Port_Length_Error;
end if;
@@ -639,7 +639,7 @@ package body Vhdl.Ieee.Vital_Timing is
if Get_Type_Staticness (Itype) /= Locally then
return Port_Length_Unknown;
else
- return Evaluation.Eval_Discrete_Type_Length (Itype);
+ return Vhdl.Evaluation.Eval_Discrete_Type_Length (Itype);
end if;
end Get_Timing_Generic_Type_Length;