aboutsummaryrefslogtreecommitdiffstats
path: root/src/synth/synth-static_oper.ads
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2020-04-02 07:35:01 +0200
committerTristan Gingold <tgingold@free.fr>2020-04-02 07:35:01 +0200
commitfbbdd1e3aeac3adcfa073f3953027972f36e2c82 (patch)
tree6770feccb72bf9c6f4f0900a8ddfd0fada205f79 /src/synth/synth-static_oper.ads
parentc23324b6b718eda1b34302ea497e0f65fca1a9e1 (diff)
downloadghdl-fbbdd1e3aeac3adcfa073f3953027972f36e2c82.tar.gz
ghdl-fbbdd1e3aeac3adcfa073f3953027972f36e2c82.tar.bz2
ghdl-fbbdd1e3aeac3adcfa073f3953027972f36e2c82.zip
synth: rework - use valtyp for expressions.
Diffstat (limited to 'src/synth/synth-static_oper.ads')
-rw-r--r--src/synth/synth-static_oper.ads12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/synth/synth-static_oper.ads b/src/synth/synth-static_oper.ads
index 4c2e51695..dd8b08ad5 100644
--- a/src/synth/synth-static_oper.ads
+++ b/src/synth/synth-static_oper.ads
@@ -25,15 +25,15 @@ with Vhdl.Nodes; use Vhdl.Nodes;
package Synth.Static_Oper is
function Synth_Static_Dyadic_Predefined (Syn_Inst : Synth_Instance_Acc;
Imp : Node;
- Left : Value_Acc;
- Right : Value_Acc;
- Expr : Node) return Value_Acc;
+ Left : Valtyp;
+ Right : Valtyp;
+ Expr : Node) return Valtyp;
function Synth_Static_Monadic_Predefined (Syn_Inst : Synth_Instance_Acc;
Imp : Node;
- Operand : Value_Acc;
- Expr : Node) return Value_Acc;
+ Operand : Valtyp;
+ Expr : Node) return Valtyp;
function Synth_Static_Predefined_Function_Call
- (Subprg_Inst : Synth_Instance_Acc; Expr : Node) return Value_Acc;
+ (Subprg_Inst : Synth_Instance_Acc; Expr : Node) return Valtyp;
end Synth.Static_Oper;