projects
/
yosys.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3f27a4e
)
cxxrtl: fix inaccuracy in CXXRTL_ALIAS documentation. NFC.
author
whitequark
<whitequark@whitequark.org>
Wed, 2 Sep 2020 15:11:55 +0000
(15:11 +0000)
committer
whitequark
<whitequark@whitequark.org>
Wed, 2 Sep 2020 15:23:47 +0000
(15:23 +0000)
Nodes driven by a constant value have type CXXRTL_VALUE and their
`next` pointer set to NULL. (This is already documented.)
backends/cxxrtl/cxxrtl_capi.h
patch
|
blob
|
history
diff --git
a/backends/cxxrtl/cxxrtl_capi.h
b/backends/cxxrtl/cxxrtl_capi.h
index 1f194280342e4624225f794c17be6b65753904de..447c9e1f383d427223bebee909e93ba6e3c2f8d3 100644
(file)
--- 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.