aboutsummaryrefslogtreecommitdiffstats
path: root/passes
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-12-01 23:19:32 -0800
committerEddie Hung <eddie@fpgeh.com>2019-12-01 23:19:32 -0800
commit4ac1b92df33d1ef4bbed71216e2b39c4a0651e5b (patch)
treead228abd3fa30f1367f8a7856fd44b1bd74d81dd /passes
parentb1ab7c16c41f0a14b8b14a041367f2259b3c0e37 (diff)
downloadyosys-4ac1b92df33d1ef4bbed71216e2b39c4a0651e5b.tar.gz
yosys-4ac1b92df33d1ef4bbed71216e2b39c4a0651e5b.tar.bz2
yosys-4ac1b92df33d1ef4bbed71216e2b39c4a0651e5b.zip
Use pool<> not std::set<> for determinism
Diffstat (limited to 'passes')
-rw-r--r--passes/hierarchy/clkpart.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/passes/hierarchy/clkpart.cc b/passes/hierarchy/clkpart.cc
index 81983e226..2d295e915 100644
--- a/passes/hierarchy/clkpart.cc
+++ b/passes/hierarchy/clkpart.cc
@@ -116,11 +116,11 @@ struct ClkPartPass : public Pass {
assign_map.set(mod);
std::vector<RTLIL::Cell*> all_cells = mod->selected_cells();
- std::set<RTLIL::Cell*> unassigned_cells(all_cells.begin(), all_cells.end());
+ pool<RTLIL::Cell*> unassigned_cells(all_cells.begin(), all_cells.end());
- std::set<RTLIL::Cell*> expand_queue, next_expand_queue;
- std::set<RTLIL::Cell*> expand_queue_up, next_expand_queue_up;
- std::set<RTLIL::Cell*> expand_queue_down, next_expand_queue_down;
+ pool<RTLIL::Cell*> expand_queue, next_expand_queue;
+ pool<RTLIL::Cell*> expand_queue_up, next_expand_queue_up;
+ pool<RTLIL::Cell*> expand_queue_down, next_expand_queue_down;
typedef tuple<bool, RTLIL::SigSpec, bool, RTLIL::SigSpec> clkdomain_t;
std::map<clkdomain_t, vector<Cell*>> assigned_cells;