mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-23 09:05:32 +00:00
Merge pull request #1857 from whitequark/splitnets-skip-processes
splitnets: skip modules with processes
This commit is contained in:
commit
42e7e44207
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