mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-24 01:25:33 +00:00
Merge pull request #2082 from YosysHQ/eddie/abc9_scc_fixes
abc9: fixes around handling combinatorial loops
This commit is contained in:
commit
45cd323055
3 changed files with 18 additions and 3 deletions
|
@ -156,7 +156,7 @@ struct XAigerWriter
|
|||
|
||||
// promote keep wires
|
||||
for (auto wire : module->wires())
|
||||
if (wire->get_bool_attribute(ID::keep))
|
||||
if (wire->get_bool_attribute(ID::keep) || wire->get_bool_attribute(ID::abc9_keep))
|
||||
sigmap.add(wire);
|
||||
|
||||
for (auto wire : module->wires()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue