mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-23 09:05:32 +00:00
splitnets: skip modules with processes.
This commit is contained in:
parent
cf716e1fff
commit
745251a31f
1 changed files with 3 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue