projects
/
yosys.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4ac1b92
)
Use pool instead of std::set for determinism
author
Eddie Hung
<eddie@fpgeh.com>
Mon, 2 Dec 2019 07:26:17 +0000
(23:26 -0800)
committer
Eddie Hung
<eddie@fpgeh.com>
Mon, 2 Dec 2019 07:26:17 +0000
(23:26 -0800)
passes/hierarchy/submod.cc
patch
|
blob
|
history
diff --git
a/passes/hierarchy/submod.cc
b/passes/hierarchy/submod.cc
index 211f96175a50de9fef15e2c227a68785a4ce8f95..3b4f33a60fbb86ca41e214e686beb9daeb4e079c 100644
(file)
--- a/
passes/hierarchy/submod.cc
+++ b/
passes/hierarchy/submod.cc
@@
-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;