3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 01:24:10 +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:
Martin Povišer 2024-02-21 12:03:37 +01:00
parent d5934357f3
commit 4c96546717

View file

@ -339,6 +339,8 @@ struct EquivSimplePass : public Pass {
CellTypes ct;
ct.setup_internals();
ct.setup_stdcells();
ct.setup_internals_ff();
ct.setup_stdcells_mem();
for (auto module : design->selected_modules())
{