aboutsummaryrefslogtreecommitdiffstats
path: root/src/synth/synth-expr.ads
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2020-04-02 08:20:42 +0200
committerTristan Gingold <tgingold@free.fr>2020-04-02 19:45:47 +0200
commit013c41bf28a636e32d7b62e89293f4ff172a5491 (patch)
tree1def9199177c040cb4ab005870196c31c3aa4fa4 /src/synth/synth-expr.ads
parentcea5cdaaacc5b599ce7d9007315f029095ff1321 (diff)
downloadghdl-013c41bf28a636e32d7b62e89293f4ff172a5491.tar.gz
ghdl-013c41bf28a636e32d7b62e89293f4ff172a5491.tar.bz2
ghdl-013c41bf28a636e32d7b62e89293f4ff172a5491.zip
synth: more cleanup (and use of valtyp).
Diffstat (limited to 'src/synth/synth-expr.ads')
-rw-r--r--src/synth/synth-expr.ads4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/synth/synth-expr.ads b/src/synth/synth-expr.ads
index ff713ff6a..84544eadf 100644
--- a/src/synth/synth-expr.ads
+++ b/src/synth/synth-expr.ads
@@ -44,7 +44,7 @@ package Synth.Expr is
-- Return True only if discrete value V is known to be positive or 0.
-- False means either not positive or unknown.
- function Is_Positive (V : Value_Acc) return Boolean;
+ function Is_Positive (V : Valtyp) return Boolean;
-- Return the bounds of a one dimensional array/vector type and the
-- width of the element.
@@ -130,7 +130,7 @@ package Synth.Expr is
procedure Free_Logvec_Array is new Ada.Unchecked_Deallocation
(Logvec_Array, Logvec_Array_Acc);
- procedure Value2logvec (Val : Value_Acc;
+ procedure Value2logvec (Val : Valtyp;
Vec : in out Logvec_Array;
Off : in out Uns32;
Has_Zx : in out Boolean);