mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 17:44:09 +00:00
Fix Verific handling of single-bit anyseq/anyconst wires
Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
parent
251562a491
commit
001c9f1d45
|
@ -244,7 +244,9 @@ bool VerificImporter::import_netlist_instance_gates(Instance *inst, RTLIL::IdStr
|
||||||
}
|
}
|
||||||
|
|
||||||
if (inst->Type() == PRIM_BUF) {
|
if (inst->Type() == PRIM_BUF) {
|
||||||
module->addBufGate(inst_name, net_map_at(inst->GetInput()), net_map_at(inst->GetOutput()));
|
auto outnet = inst->GetOutput();
|
||||||
|
if (!any_all_nets.count(outnet))
|
||||||
|
module->addBufGate(inst_name, net_map_at(inst->GetInput()), net_map_at(outnet));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1074,7 +1076,7 @@ void VerificImporter::import_netlist(RTLIL::Design *design, Netlist *nl, std::se
|
||||||
|
|
||||||
if (inst->Type() == PRIM_BUF) {
|
if (inst->Type() == PRIM_BUF) {
|
||||||
auto outnet = inst->GetOutput();
|
auto outnet = inst->GetOutput();
|
||||||
if (!anyconst_nets.count(outnet) && !anyseq_nets.count(outnet) && !allconst_nets.count(outnet) && !allseq_nets.count(outnet))
|
if (!any_all_nets.count(outnet))
|
||||||
module->addBufGate(inst_name, net_map_at(inst->GetInput()), net_map_at(outnet));
|
module->addBufGate(inst_name, net_map_at(inst->GetInput()), net_map_at(outnet));
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue