From 6d64d768b07a027fff42515dbba4cdb6f060d17a Mon Sep 17 00:00:00 2001 From: Alberto Gonzalez Date: Sun, 19 Apr 2020 22:41:21 +0000 Subject: [PATCH] Replace `std::map` with `dict` for `port_new2old_map`, `port_connmap`, and `cellbits_to_tplbits`. --- passes/techmap/techmap.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/passes/techmap/techmap.cc b/passes/techmap/techmap.cc index 96508845d..b4df6142e 100644 --- a/passes/techmap/techmap.cc +++ b/passes/techmap/techmap.cc @@ -862,9 +862,9 @@ struct TechmapWorker techmap_do_cache[new_tpl] = true; tpl = new_tpl; - std::map port_new2old_map; - std::map port_connmap; - std::map cellbits_to_tplbits; + dict port_new2old_map; + dict port_connmap; + dict cellbits_to_tplbits; for (auto wire : tpl->wires().to_vector()) { -- 2.30.2