mirror of
https://github.com/YosysHQ/yosys
synced 2025-10-01 13:39:30 +00:00
peepopt: Remove now-redundant dffmux pattern.
This commit is contained in:
parent
acd8c5c205
commit
a0e99a9f3f
5 changed files with 129 additions and 318 deletions
|
@ -67,8 +67,6 @@ struct PeepoptPass : public Pass {
|
|||
GENERATE_PATTERN(peepopt_pm, shiftmul);
|
||||
else if (genmode == "muldiv")
|
||||
GENERATE_PATTERN(peepopt_pm, muldiv);
|
||||
else if (genmode == "dffmux")
|
||||
GENERATE_PATTERN(peepopt_pm, dffmux);
|
||||
else
|
||||
log_abort();
|
||||
return;
|
||||
|
@ -106,7 +104,6 @@ struct PeepoptPass : public Pass {
|
|||
|
||||
pm.run_shiftmul();
|
||||
pm.run_muldiv();
|
||||
pm.run_dffmux();
|
||||
|
||||
for (auto w : module->wires()) {
|
||||
auto it = w->attributes.find(ID::init);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue