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

Replace std::map with dict for positional_ports.

This commit is contained in:
Alberto Gonzalez 2020-04-19 22:21:52 +00:00
parent 2fb4931e5b
commit 64c16f8c13
No known key found for this signature in database
GPG key ID: 8395A8BA109708B2

View file

@ -204,7 +204,7 @@ struct TechmapWorker
design->select(module, m); design->select(module, m);
} }
std::map<IdString, IdString> positional_ports; dict<IdString, IdString> positional_ports;
dict<Wire*, IdString> temp_renamed_wires; dict<Wire*, IdString> temp_renamed_wires;
pool<SigBit> autopurge_tpl_bits; pool<SigBit> autopurge_tpl_bits;