From 6bd3dba1e39780e52097533f7e89f823d7e72956 Mon Sep 17 00:00:00 2001 From: gatecat Date: Wed, 10 Feb 2021 10:42:26 +0000 Subject: Remove the unused CellInfo::pins field No arches ever actually used this to implement a Cell->Bel pin mapping, and in practice if any did try they would inevitably hit bitrot. This field had limited use in practice as it is necessary to also support cases where one cell pin maps to more than one bel pin. Removing this old field is the first step towards developing a new API for this. Signed-off-by: gatecat --- common/nextpnr.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'common/nextpnr.h') diff --git a/common/nextpnr.h b/common/nextpnr.h index 12462698..c43b9dc4 100644 --- a/common/nextpnr.h +++ b/common/nextpnr.h @@ -605,9 +605,6 @@ struct CellInfo : ArchCellInfo BelId bel; PlaceStrength belStrength = STRENGTH_NONE; - // cell_port -> bel_pin - std::unordered_map pins; - // placement constraints CellInfo *constr_parent = nullptr; std::vector constr_children; -- cgit v1.2.3