Replace `std::map` with `dict` for `TechmapWires` type.
authorAlberto Gonzalez <boqwxp@airmail.cc>
Sun, 19 Apr 2020 22:34:17 +0000 (22:34 +0000)
committerAlberto Gonzalez <boqwxp@airmail.cc>
Thu, 14 May 2020 20:06:54 +0000 (20:06 +0000)
passes/techmap/techmap.cc

index 416d968620344550690842c6ef63d33121a078aa..3a68d3cb98f4aa363a8dab4e393b773a06973025 100644 (file)
@@ -79,7 +79,7 @@ struct TechmapWorker
                RTLIL::SigSpec value;
        };
 
-       typedef std::map<IdString, std::vector<TechmapWireData>> TechmapWires;
+       typedef dict<IdString, std::vector<TechmapWireData>> TechmapWires;
 
        bool extern_mode;
        bool assert_mode;