From f235f212ea242d765e38f4b317390657c1291f77 Mon Sep 17 00:00:00 2001 From: Alberto Gonzalez Date: Mon, 20 Apr 2020 04:46:09 +0000 Subject: [PATCH] Replace `std::set` with `pool` for `cell_to_inbit` and `outbit_to_cell`. --- passes/techmap/techmap.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/passes/techmap/techmap.cc b/passes/techmap/techmap.cc index 17d98847e..ab719cbaa 100644 --- a/passes/techmap/techmap.cc +++ b/passes/techmap/techmap.cc @@ -490,8 +490,8 @@ struct TechmapWorker } TopoSort> cells; - dict> cell_to_inbit; - dict> outbit_to_cell; + dict> cell_to_inbit; + dict> outbit_to_cell; for (auto cell : module->selected_cells()) { -- 2.30.2