mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-22 05:43:40 +00:00
Smallfix
This commit is contained in:
parent
c8dff00ca6
commit
983d404e93
1 changed files with 1 additions and 1 deletions
|
@ -203,7 +203,7 @@ struct SccWorker
|
||||||
if (!nofeedbackMode && cellToNextCell[cell].count(cell)) {
|
if (!nofeedbackMode && cellToNextCell[cell].count(cell)) {
|
||||||
log("Found an SCC: ");
|
log("Found an SCC: ");
|
||||||
pool<RTLIL::Cell*> scc;
|
pool<RTLIL::Cell*> scc;
|
||||||
log("%s %s %s %s ->", RTLIL::id2cstr(cell->name), RTLIL::id2cstr(cell->type), RTLIL::id2cstr(module->name), RTLIL::id2cstr(cell->get_src_attribute()));
|
log("%s %s %s %s -> ", RTLIL::id2cstr(cell->name), RTLIL::id2cstr(cell->type), RTLIL::id2cstr(module->name), RTLIL::id2cstr(cell->get_src_attribute()));
|
||||||
cell2scc[cell] = sccList.size();
|
cell2scc[cell] = sccList.size();
|
||||||
scc.insert(cell);
|
scc.insert(cell);
|
||||||
sccList.push_back(scc);
|
sccList.push_back(scc);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue