aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/vhdl-evaluation.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2022-04-27 05:59:02 +0200
committerTristan Gingold <tgingold@free.fr>2022-04-27 05:59:02 +0200
commit7fdbe576eb04ea5a6015a17caa0b87d8810452fe (patch)
tree823f5e69b853463f8a8164524ace769f77f116c2 /src/vhdl/vhdl-evaluation.adb
parent49e6a51d2e16b75c9df7a5246267148ddfcecd67 (diff)
downloadghdl-7fdbe576eb04ea5a6015a17caa0b87d8810452fe.tar.gz
ghdl-7fdbe576eb04ea5a6015a17caa0b87d8810452fe.tar.bz2
ghdl-7fdbe576eb04ea5a6015a17caa0b87d8810452fe.zip
synth: renaming (synth-static_oper -> synth-vhdl_eval)
Diffstat (limited to 'src/vhdl/vhdl-evaluation.adb')
-rw-r--r--src/vhdl/vhdl-evaluation.adb9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/vhdl/vhdl-evaluation.adb b/src/vhdl/vhdl-evaluation.adb
index cfbb231c6..8cb22f5c9 100644
--- a/src/vhdl/vhdl-evaluation.adb
+++ b/src/vhdl/vhdl-evaluation.adb
@@ -34,7 +34,7 @@ with Vhdl.Ieee.Std_Logic_1164;
with Elab.Vhdl_Objtypes;
with Elab.Vhdl_Types;
with Elab.Memtype;
-with Synth.Static_Oper;
+with Synth.Vhdl_Eval;
with Grt.Types;
with Grt.Vhdl_Types;
@@ -1018,8 +1018,7 @@ package body Vhdl.Evaluation is
is
use Areapools;
use Elab.Vhdl_Objtypes;
--- use Elab.Vhdl_Values;
- use Synth.Static_Oper;
+ use Synth.Vhdl_Eval;
use Synth_Helpers;
Res_Type : constant Iir := Get_Return_Type (Imp);
@@ -1035,10 +1034,10 @@ package body Vhdl.Evaluation is
Left_Mt := Convert_Node_To_Memtyp (Left);
if Right /= Null_Iir then
Right_Mt := Convert_Node_To_Memtyp (Right);
- Res_Mt := Synth_Static_Dyadic_Predefined
+ Res_Mt := Eval_Static_Dyadic_Predefined
(Imp, Res_Typ, Left_Mt, Right_Mt, Orig);
else
- Res_Mt := Synth_Static_Monadic_Predefined
+ Res_Mt := Eval_Static_Monadic_Predefined
(Imp, Left_Mt, Orig);
end if;
Res := Convert_Memtyp_To_Node (Res_Mt, Res_Type, Orig);