mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-13 04:28:18 +00:00
Leave FIXME for clean
This commit is contained in:
parent
396da54b52
commit
c7ef3863f3
|
@ -317,10 +317,8 @@ void AigerReader::parse_xaiger()
|
||||||
wire->port_output = other_wire->port_output;
|
wire->port_output = other_wire->port_output;
|
||||||
other_wire->port_input = false;
|
other_wire->port_input = false;
|
||||||
other_wire->port_output = false;
|
other_wire->port_output = false;
|
||||||
if (wire->port_input) {
|
if (wire->port_input)
|
||||||
log_debug("assign %s = %s [%d];\n", other_wire->name.c_str(), wire->name.c_str(), i);
|
|
||||||
module->connect(other_wire, SigSpec(wire, i));
|
module->connect(other_wire, SigSpec(wire, i));
|
||||||
}
|
|
||||||
else
|
else
|
||||||
module->connect(SigSpec(wire, i), other_wire);
|
module->connect(SigSpec(wire, i), other_wire);
|
||||||
}
|
}
|
||||||
|
@ -329,6 +327,8 @@ void AigerReader::parse_xaiger()
|
||||||
|
|
||||||
module->fixup_ports();
|
module->fixup_ports();
|
||||||
design->add(module);
|
design->add(module);
|
||||||
|
// FIXME: 'clean'-ing causes assertion fail in abc9.cc, and checks to fail...
|
||||||
|
//Pass::call(design, "clean");
|
||||||
}
|
}
|
||||||
|
|
||||||
void AigerReader::parse_aiger_ascii()
|
void AigerReader::parse_aiger_ascii()
|
||||||
|
|
Loading…
Reference in a new issue