3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-05 17:14:08 +00:00

Merge pull request #1857 from whitequark/splitnets-skip-processes

splitnets: skip modules with processes
This commit is contained in:
whitequark 2020-04-09 04:03:30 +00:00 committed by GitHub
commit 42e7e44207
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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)