mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-20 04:43:40 +00:00
Use pool instead of std::set for determinism
This commit is contained in:
parent
4ac1b92df3
commit
1d87488795
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue