mirror of https://github.com/YosysHQ/yosys.git
xaiger: promote abc9_keep wires
This commit is contained in:
parent
1dce798dc5
commit
1826370b3a
|
@ -156,7 +156,7 @@ struct XAigerWriter
|
||||||
|
|
||||||
// promote keep wires
|
// promote keep wires
|
||||||
for (auto wire : module->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);
|
sigmap.add(wire);
|
||||||
|
|
||||||
for (auto wire : module->wires()) {
|
for (auto wire : module->wires()) {
|
||||||
|
|
Loading…
Reference in New Issue