3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-13 20:38:44 +00:00

Fixed "scc" for cells that have feedback singals _and_ are part of a larger loop

This commit is contained in:
Clifford Wolf 2016-05-27 16:33:13 +02:00
parent 33742f4e8f
commit 611f121cb9

View file

@ -181,9 +181,9 @@ struct SccWorker
cell2scc[cell] = sccList.size();
scc.insert(cell);
sccList.push_back(scc);
workQueue.erase(cell);
log("\n");
} else
}
run(cell, 0, maxDepth);
}