aboutsummaryrefslogtreecommitdiffstats
path: root/backends
diff options
context:
space:
mode:
authorwhitequark <whitequark@whitequark.org>2020-09-02 15:11:55 +0000
committerwhitequark <whitequark@whitequark.org>2020-09-02 15:23:47 +0000
commitd880f6eda286301fa5ad2a914bdfba8c5c02d75a (patch)
tree977666f527916c1ebee92fb7443809bcf1fcc70f /backends
parent3f27a4ea68a2f15e5f034af8de6c01ae1a2781d1 (diff)
downloadyosys-d880f6eda286301fa5ad2a914bdfba8c5c02d75a.tar.gz
yosys-d880f6eda286301fa5ad2a914bdfba8c5c02d75a.tar.bz2
yosys-d880f6eda286301fa5ad2a914bdfba8c5c02d75a.zip
cxxrtl: fix inaccuracy in CXXRTL_ALIAS documentation. NFC.
Nodes driven by a constant value have type CXXRTL_VALUE and their `next` pointer set to NULL. (This is already documented.)
Diffstat (limited to 'backends')
-rw-r--r--backends/cxxrtl/cxxrtl_capi.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/cxxrtl/cxxrtl_capi.h b/backends/cxxrtl/cxxrtl_capi.h
index 1f1942803..447c9e1f3 100644
--- a/backends/cxxrtl/cxxrtl_capi.h
+++ b/backends/cxxrtl/cxxrtl_capi.h
@@ -103,7 +103,7 @@ enum cxxrtl_type {
CXXRTL_MEMORY = 2,
// Aliases correspond to netlist nodes driven by another node such that their value is always
- // exactly equal, or driven by a constant value.
+ // exactly equal.
//
// Aliases can be inspected via the `curr` pointer. They cannot be modified, and the `next`
// pointer is always NULL.