3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-02 09:20:23 +00:00
This commit is contained in:
Eddie Hung 2019-06-17 15:10:33 -07:00
parent 3ebba74461
commit d80678e581

View file

@ -527,7 +527,7 @@ void abc9_module(RTLIL::Design *design, RTLIL::Module *current_module, std::stri
} }
RTLIL::Module* box_module = design->module(cell->type); RTLIL::Module* box_module = design->module(cell->type);
if (box_module && box_module->attributes.count("\\abc_box_id")) if (box_module && box_module->attributes.count("\\abc_box_id"))
boxes.emplace_back(it->second); boxes.emplace_back(cell);
++it; ++it;
} }