3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-08 10:25:19 +00:00

Use pool instead of std::set for determinism

This commit is contained in:
Eddie Hung 2019-12-01 23:26:17 -08:00
parent 4ac1b92df3
commit 1d87488795

View file

@ -42,7 +42,7 @@ struct SubmodWorker
struct SubModule
{
std::string name, full_name;
std::set<RTLIL::Cell*> cells;
pool<RTLIL::Cell*> cells;
};
std::map<std::string, SubModule> submodules;