mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-13 04:28:18 +00:00
Use pool instead of std::set for determinism
This commit is contained in:
parent
b3a66dff7c
commit
a265a84632
|
@ -42,7 +42,7 @@ struct SubmodWorker
|
||||||
struct SubModule
|
struct SubModule
|
||||||
{
|
{
|
||||||
std::string name, full_name;
|
std::string name, full_name;
|
||||||
std::set<RTLIL::Cell*> cells;
|
pool<RTLIL::Cell*> cells;
|
||||||
};
|
};
|
||||||
|
|
||||||
std::map<std::string, SubModule> submodules;
|
std::map<std::string, SubModule> submodules;
|
||||||
|
|
Loading…
Reference in a new issue