mirror of https://github.com/YosysHQ/yosys.git
Fixed "scc" for cells that have feedback singals _and_ are part of a larger loop
This commit is contained in:
parent
33742f4e8f
commit
611f121cb9
|
@ -181,9 +181,9 @@ struct SccWorker
|
||||||
cell2scc[cell] = sccList.size();
|
cell2scc[cell] = sccList.size();
|
||||||
scc.insert(cell);
|
scc.insert(cell);
|
||||||
sccList.push_back(scc);
|
sccList.push_back(scc);
|
||||||
workQueue.erase(cell);
|
|
||||||
log("\n");
|
log("\n");
|
||||||
} else
|
}
|
||||||
|
|
||||||
run(cell, 0, maxDepth);
|
run(cell, 0, maxDepth);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue