mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-27 08:28:45 +00:00
equiv_simple: Take FFs into account for driver map
This fixes an issue introduced in commit 26644ea
due to which flip-flops
are inadvertently ignored when building up driver map. The mentioned
commit wasn't without functional change after all.
This commit is contained in:
parent
d5934357f3
commit
4c96546717
1 changed files with 2 additions and 0 deletions
|
@ -339,6 +339,8 @@ struct EquivSimplePass : public Pass {
|
||||||
CellTypes ct;
|
CellTypes ct;
|
||||||
ct.setup_internals();
|
ct.setup_internals();
|
||||||
ct.setup_stdcells();
|
ct.setup_stdcells();
|
||||||
|
ct.setup_internals_ff();
|
||||||
|
ct.setup_stdcells_mem();
|
||||||
|
|
||||||
for (auto module : design->selected_modules())
|
for (auto module : design->selected_modules())
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue