diff options
author | whitequark <whitequark@whitequark.org> | 2020-09-02 15:11:55 +0000 |
---|---|---|
committer | whitequark <whitequark@whitequark.org> | 2020-09-02 15:23:47 +0000 |
commit | d880f6eda286301fa5ad2a914bdfba8c5c02d75a (patch) | |
tree | 977666f527916c1ebee92fb7443809bcf1fcc70f | |
parent | 3f27a4ea68a2f15e5f034af8de6c01ae1a2781d1 (diff) | |
download | yosys-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.)
-rw-r--r-- | backends/cxxrtl/cxxrtl_capi.h | 2 |
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. |