From: whitequark Date: Wed, 2 Sep 2020 15:11:55 +0000 (+0000) Subject: cxxrtl: fix inaccuracy in CXXRTL_ALIAS documentation. NFC. X-Git-Tag: working-ls180~278^2~4 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d880f6eda286301fa5ad2a914bdfba8c5c02d75a;p=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.) --- 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.