3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-06-06 22:23:23 +00:00

Do not double count LUT1s

This commit is contained in:
Eddie Hung 2019-05-30 11:32:14 -07:00
parent fdfc18be91
commit 0800846e73

View file

@ -670,7 +670,6 @@ void abc9_module(RTLIL::Design *design, RTLIL::Module *current_module, std::stri
RTLIL::SigBit(module->wires_[remap_name(y_bit.wire->name)], y_bit.offset), RTLIL::SigBit(module->wires_[remap_name(y_bit.wire->name)], y_bit.offset),
driver_lut); driver_lut);
} }
cell_stats["$lut"]++;
} }
else { else {
cell = module->addCell(remap_name(c->name), "$_NOT_"); cell = module->addCell(remap_name(c->name), "$_NOT_");