aboutsummaryrefslogtreecommitdiffstats
path: root/src/synth/synth-values.ads
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-09-17 18:41:28 +0200
committerTristan Gingold <tgingold@free.fr>2019-09-18 18:45:25 +0200
commit40e085168bdbaabd1730bffa1de7e450ae2fc0b7 (patch)
treef87cee45f3f4019e3f2bc43806cef3c93c76d718 /src/synth/synth-values.ads
parentca31e81a60f0ae87ec6bb9270b53c0b8483af2e9 (diff)
downloadghdl-40e085168bdbaabd1730bffa1de7e450ae2fc0b7.tar.gz
ghdl-40e085168bdbaabd1730bffa1de7e450ae2fc0b7.tar.bz2
ghdl-40e085168bdbaabd1730bffa1de7e450ae2fc0b7.zip
synth: remove value_mux2.
Diffstat (limited to 'src/synth/synth-values.ads')
-rw-r--r--src/synth/synth-values.ads10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/synth/synth-values.ads b/src/synth/synth-values.ads
index 7c1de0ad9..81565e1fc 100644
--- a/src/synth/synth-values.ads
+++ b/src/synth/synth-values.ads
@@ -137,8 +137,6 @@ package Synth.Values is
-- into a net.
Value_Wire,
- Value_Mux2,
-
-- A discrete value (integer or enumeration).
Value_Discrete,
@@ -184,10 +182,6 @@ package Synth.Values is
N : Net;
when Value_Wire =>
W : Wire_Id;
- when Value_Mux2 =>
- M_Cond : Value_Acc;
- M_T : Value_Acc;
- M_F : Value_Acc;
when Value_Discrete =>
Scal : Int64;
when Value_Float =>
@@ -253,10 +247,6 @@ package Synth.Values is
-- Create a Value_Wire. For a bit wire, RNG must be null.
function Create_Value_Wire (W : Wire_Id; Wtype : Type_Acc) return Value_Acc;
- -- Create a mux2.
- function Create_Value_Mux2 (Cond : Value_Acc; T : Value_Acc; F : Value_Acc)
- return Value_Acc;
-
function Create_Value_Discrete (Val : Int64; Vtype : Type_Acc)
return Value_Acc;