mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 01:24:10 +00:00
Fixed dfflibmap endless-loop bug
This commit is contained in:
parent
2ee3ac4ba3
commit
404bcc2d1e
|
@ -482,6 +482,7 @@ struct DfflibmapPass : public Pass {
|
|||
keep_running |= expand_cellmap("$_DFFSR_??*_", "R");
|
||||
} while (keep_running);
|
||||
do {
|
||||
keep_running = false;
|
||||
keep_running |= expand_cellmap("$_DFF_*_", "C");
|
||||
keep_running |= expand_cellmap("$_DFF_*??_", "C");
|
||||
keep_running |= expand_cellmap("$_DFFSR_*??_", "C");
|
||||
|
|
Loading…
Reference in a new issue