aboutsummaryrefslogtreecommitdiffstats
path: root/ice40
diff options
context:
space:
mode:
authorgatecat <gatecat@ds0.me>2021-06-02 09:28:53 +0100
committergatecat <gatecat@ds0.me>2021-06-02 15:04:53 +0100
commitf4fed62c05a9595e22a8ec54add5531225911741 (patch)
tree008195f400702e7099c17fd52617c44d8c7c84d1 /ice40
parentdfe0ce599a8d713eb1caabcd44626aa052390312 (diff)
downloadnextpnr-f4fed62c05a9595e22a8ec54add5531225911741.tar.gz
nextpnr-f4fed62c05a9595e22a8ec54add5531225911741.tar.bz2
nextpnr-f4fed62c05a9595e22a8ec54add5531225911741.zip
Use hashlib in routers
Signed-off-by: gatecat <gatecat@ds0.me>
Diffstat (limited to 'ice40')
-rw-r--r--ice40/delay.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ice40/delay.cc b/ice40/delay.cc
index a3469876..0bcab160 100644
--- a/ice40/delay.cc
+++ b/ice40/delay.cc
@@ -62,7 +62,7 @@ void ice40DelayFuzzerMain(Context *ctx)
WireId src = srcWires[index];
WireId dst = dstWires[index++];
- std::unordered_map<WireId, PipId> route;
+ dict<WireId, PipId> route;
#if NUM_FUZZ_ROUTES <= 1000
if (!ctx->getActualRouteDelay(src, dst, nullptr, &route, false))