From 5a170f286c2868375d93477ad3bd08ccc30a15a1 Mon Sep 17 00:00:00 2001 From: David Shah Date: Tue, 24 Jul 2018 15:52:56 +0200 Subject: ice40: Remove use of deprecated APIs Signed-off-by: David Shah --- ice40/place_legaliser.cc | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'ice40/place_legaliser.cc') diff --git a/ice40/place_legaliser.cc b/ice40/place_legaliser.cc index 2aefb839..ebc2b865 100644 --- a/ice40/place_legaliser.cc +++ b/ice40/place_legaliser.cc @@ -75,11 +75,9 @@ static void get_chain_midpoint(const Context *ctx, const CellChain &chain, float for (auto cell : chain.cells) { if (cell->bel == BelId()) continue; - int bel_x, bel_y; - bool bel_gb; - ctx->estimatePosition(cell->bel, bel_x, bel_y, bel_gb); - total_x += bel_x; - total_y += bel_y; + Loc bel_loc = ctx->getBelLocation(cell->bel); + total_x += bel_loc.x; + total_y += bel_loc.y; N++; } NPNR_ASSERT(N > 0); -- cgit v1.2.3