mirror of https://github.com/YosysHQ/yosys.git
xaiger: do not promote output wires
This commit is contained in:
parent
0466c48533
commit
7136cee6b4
|
@ -153,11 +153,6 @@ struct XAigerWriter
|
||||||
if (wire->port_input)
|
if (wire->port_input)
|
||||||
sigmap.add(wire);
|
sigmap.add(wire);
|
||||||
|
|
||||||
// promote output wires
|
|
||||||
for (auto wire : module->wires())
|
|
||||||
if (wire->port_output)
|
|
||||||
sigmap.add(wire);
|
|
||||||
|
|
||||||
for (auto wire : module->wires())
|
for (auto wire : module->wires())
|
||||||
{
|
{
|
||||||
bool keep = wire->attributes.count("\\keep");
|
bool keep = wire->attributes.count("\\keep");
|
||||||
|
|
Loading…
Reference in New Issue