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

Do not fix port widths on any blackbox instances

This commit is contained in:
Clifford Wolf 2017-02-13 17:07:38 +01:00
parent db7314bc02
commit 69468d5a16

View file

@ -630,7 +630,7 @@ struct HierarchyPass : public Pass {
Module *m = design->module(cell->type);
if (m == nullptr)
if (m == nullptr || m->get_bool_attribute("\\blackbox"))
continue;
for (auto &conn : cell->connections())