3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-18 06:39:03 +00:00

Merge pull request #66 from alaindargelas/fix_peephole_sub_neg

Actually re-enable peephole_sub_neg pass
This commit is contained in:
alaindargelas 2025-03-13 14:51:56 -07:00 committed by GitHub
commit c835b95e61
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -121,7 +121,7 @@ struct PeepoptPass : public Pass {
pm.run_shiftmul_left();
pm.run_muldiv();
pm.run_muldiv_c();
// pm.run_sub_neg();
pm.run_sub_neg();
if (muxorder)
pm.run_muxorder();
}