3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 17:44:09 +00:00

Correctly treat empty modules as blackboxes in Verific

Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
Clifford Wolf 2019-11-20 12:56:31 +01:00
parent f6ff311a1d
commit 55bda2b2c6

View file

@ -130,7 +130,7 @@ RTLIL::SigBit VerificImporter::net_map_at(Net *net)
bool is_blackbox(Netlist *nl) bool is_blackbox(Netlist *nl)
{ {
if (nl->IsBlackBox()) if (nl->IsBlackBox() || nl->IsEmptyBox())
return true; return true;
const char *attr = nl->GetAttValue("blackbox"); const char *attr = nl->GetAttValue("blackbox");