3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 17:44:09 +00:00

Replace std::map with dict for port_new2old_map, port_connmap, and cellbits_to_tplbits.

This commit is contained in:
Alberto Gonzalez 2020-04-19 22:41:21 +00:00
parent 5cb4ae4666
commit 6d64d768b0
No known key found for this signature in database
GPG key ID: 8395A8BA109708B2

View file

@ -862,9 +862,9 @@ struct TechmapWorker
techmap_do_cache[new_tpl] = true;
tpl = new_tpl;
std::map<RTLIL::SigBit, RTLIL::SigBit> port_new2old_map;
std::map<RTLIL::SigBit, RTLIL::SigBit> port_connmap;
std::map<RTLIL::SigBit, RTLIL::SigBit> cellbits_to_tplbits;
dict<RTLIL::SigBit, RTLIL::SigBit> port_new2old_map;
dict<RTLIL::SigBit, RTLIL::SigBit> port_connmap;
dict<RTLIL::SigBit, RTLIL::SigBit> cellbits_to_tplbits;
for (auto wire : tpl->wires().to_vector())
{