From: Alberto Gonzalez Date: Sun, 19 Apr 2020 22:21:52 +0000 (+0000) Subject: Replace `std::map` with `dict` for `positional_ports`. X-Git-Tag: working-ls180~517^2~21 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=64c16f8c1364bbe45bc17a54c29d70990efb45ad;p=yosys.git Replace `std::map` with `dict` for `positional_ports`. --- diff --git a/passes/techmap/techmap.cc b/passes/techmap/techmap.cc index 9779ecae9..651f772c9 100644 --- a/passes/techmap/techmap.cc +++ b/passes/techmap/techmap.cc @@ -204,7 +204,7 @@ struct TechmapWorker design->select(module, m); } - std::map positional_ports; + dict positional_ports; dict temp_renamed_wires; pool autopurge_tpl_bits;