aboutsummaryrefslogtreecommitdiffstats
path: root/src/synth/synth-values.ads
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-11-13 19:47:50 +0100
committerTristan Gingold <tgingold@free.fr>2019-11-13 19:47:50 +0100
commit320a18c681edd29d8f58bd7f3109ae6ee1faffca (patch)
tree63a9957904cc22fb965d7555e3a6f8fed8c52b1b /src/synth/synth-values.ads
parent444fb962c6612f9c68d5211ab0fabb1d2aac854e (diff)
downloadghdl-320a18c681edd29d8f58bd7f3109ae6ee1faffca.tar.gz
ghdl-320a18c681edd29d8f58bd7f3109ae6ee1faffca.tar.bz2
ghdl-320a18c681edd29d8f58bd7f3109ae6ee1faffca.zip
synth: renames Is_Const to Is_Static.
Diffstat (limited to 'src/synth/synth-values.ads')
-rw-r--r--src/synth/synth-values.ads5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/synth/synth-values.ads b/src/synth/synth-values.ads
index 03fa9d52e..a1e75d1bd 100644
--- a/src/synth/synth-values.ads
+++ b/src/synth/synth-values.ads
@@ -278,10 +278,11 @@ package Synth.Values is
function Is_Bounded_Type (Typ : Type_Acc) return Boolean;
- function Is_Const (Val : Value_Acc) return Boolean;
+ -- True if VAL is static, ie contains neither nets nor wires.
+ function Is_Static (Val : Value_Acc) return Boolean;
-- Can also return true for nets and wires.
- function Is_Const_Val (Val : Value_Acc) return Boolean;
+ function Is_Static_Val (Val : Value_Acc) return Boolean;
function Is_Equal (L, R : Value_Acc) return Boolean;