mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 09:34:09 +00:00
verilog_backend: Use hashlib dict for auto_name_map
This is most likely faster.
This commit is contained in:
parent
596743a6b6
commit
51ef942547
|
@ -37,7 +37,7 @@ PRIVATE_NAMESPACE_BEGIN
|
|||
|
||||
bool verbose, norename, noattr, attr2comment, noexpr, nodec, nohex, nostr, extmem, defparam, decimal, siminit, systemverilog, simple_lhs, noparallelcase;
|
||||
int auto_name_counter, auto_name_offset, auto_name_digits, extmem_counter;
|
||||
std::map<RTLIL::IdString, int> auto_name_map;
|
||||
dict<RTLIL::IdString, int> auto_name_map;
|
||||
std::set<RTLIL::IdString> reg_wires;
|
||||
std::string auto_prefix, extmem_prefix;
|
||||
|
||||
|
|
Loading…
Reference in a new issue