From e260ac33abdd175f38ea5d8367c52a154b486648 Mon Sep 17 00:00:00 2001 From: gatecat Date: Wed, 7 Dec 2022 10:00:53 +0100 Subject: refactor: ArcBounds -> BoundingBox Signed-off-by: gatecat --- ice40/arch.cc | 4 ++-- ice40/arch.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'ice40') diff --git a/ice40/arch.cc b/ice40/arch.cc index c9c99d3a..6a80a6ff 100644 --- a/ice40/arch.cc +++ b/ice40/arch.cc @@ -1265,9 +1265,9 @@ void Arch::assignCellInfo(CellInfo *cell) } } -ArcBounds Arch::getRouteBoundingBox(WireId src, WireId dst) const +BoundingBox Arch::getRouteBoundingBox(WireId src, WireId dst) const { - ArcBounds bb; + BoundingBox bb; int src_x = chip_info->wire_data[src.index].x; int src_y = chip_info->wire_data[src.index].y; diff --git a/ice40/arch.h b/ice40/arch.h index 498a8b71..9d10cddf 100644 --- a/ice40/arch.h +++ b/ice40/arch.h @@ -802,7 +802,7 @@ struct Arch : BaseArch uint32_t getDelayChecksum(delay_t v) const override { return v; } bool getBudgetOverride(const NetInfo *net_info, const PortRef &sink, delay_t &budget) const override; - ArcBounds getRouteBoundingBox(WireId src, WireId dst) const override; + BoundingBox getRouteBoundingBox(WireId src, WireId dst) const override; // ------------------------------------------------- -- cgit v1.2.3