mirror of https://github.com/YosysHQ/yosys.git
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.)
This commit is contained in:
parent
3f27a4ea68
commit
d880f6eda2
|
@ -103,7 +103,7 @@ enum cxxrtl_type {
|
||||||
CXXRTL_MEMORY = 2,
|
CXXRTL_MEMORY = 2,
|
||||||
|
|
||||||
// Aliases correspond to netlist nodes driven by another node such that their value is always
|
// 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`
|
// Aliases can be inspected via the `curr` pointer. They cannot be modified, and the `next`
|
||||||
// pointer is always NULL.
|
// pointer is always NULL.
|
||||||
|
|
Loading…
Reference in New Issue