mirror of https://github.com/YosysHQ/yosys.git
Bugfix in smt2 back-end for pure checker modules
This commit is contained in:
parent
ecdc22b06c
commit
df2e5aad6f
|
@ -749,6 +749,10 @@ struct Smt2Worker
|
|||
|
||||
if (verbose) log("=> export logic driving hierarchical cells\n");
|
||||
|
||||
for (auto cell : module->cells())
|
||||
if (module->design->module(cell->type) != nullptr)
|
||||
export_cell(cell);
|
||||
|
||||
while (!hiercells_queue.empty())
|
||||
{
|
||||
std::set<RTLIL::Cell*> queue;
|
||||
|
|
Loading…
Reference in New Issue