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

splitnets: skip modules with processes.

This commit is contained in:
whitequark 2019-12-11 02:14:23 +00:00
parent cf716e1fff
commit 745251a31f

View file

@ -141,6 +141,9 @@ struct SplitnetsPass : public Pass {
for (auto module : design->selected_modules())
{
if (module->has_processes_warn())
continue;
SplitnetsWorker worker;
if (flag_ports)