mirror of
https://github.com/YosysHQ/yosys
synced 2025-07-23 20:58:55 +00:00
SigSpec refactoring: renamed chunks and width to __chunks and __width
This commit is contained in:
parent
3b5f4ff39c
commit
a233762a81
62 changed files with 954 additions and 951 deletions
|
@ -31,7 +31,7 @@ static RTLIL::SigChunk last_hi, last_lo;
|
|||
void hilomap_worker(RTLIL::SigSpec &sig)
|
||||
{
|
||||
sig.expand();
|
||||
for (auto &c : sig.chunks) {
|
||||
for (auto &c : sig.__chunks) {
|
||||
if (c.wire == NULL && (c.data.bits.at(0) == RTLIL::State::S1) && !hicell_celltype.empty()) {
|
||||
if (!singleton_mode || last_hi.width == 0) {
|
||||
last_hi = RTLIL::SigChunk(module->addWire(NEW_ID));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue