mirror of
https://github.com/YosysHQ/yosys
synced 2025-09-16 06:31:29 +00:00
Update passes/techmap to avoid bits()
This commit is contained in:
parent
510eac4ad0
commit
a8cc9202b9
6 changed files with 21 additions and 17 deletions
|
@ -1401,7 +1401,7 @@ struct FlowmapWorker
|
|||
log_signal(node), log_signal(undef), env.c_str());
|
||||
}
|
||||
|
||||
lut_table.bits()[i] = value.as_bool() ? State::S1 : State::S0;
|
||||
lut_table.set(i, value.as_bool() ? State::S1 : State::S0);
|
||||
ce.pop();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue