aboutsummaryrefslogtreecommitdiffstats
path: root/ecp5/arch.h
diff options
context:
space:
mode:
authorDavid Shah <dave@ds0.me>2020-10-15 09:36:15 +0100
committerDavid Shah <dave@ds0.me>2020-10-15 09:36:15 +0100
commitb18ea204c2cd88a5fad8989f4597cfa3a8152ca1 (patch)
tree83d380897bc119f7f4295a8f795e23a826e62735 /ecp5/arch.h
parent576baa994f4b9e1746a231469bfd9e65d1d5a2b4 (diff)
downloadnextpnr-b18ea204c2cd88a5fad8989f4597cfa3a8152ca1.tar.gz
nextpnr-b18ea204c2cd88a5fad8989f4597cfa3a8152ca1.tar.bz2
nextpnr-b18ea204c2cd88a5fad8989f4597cfa3a8152ca1.zip
Remove wire alias API
It has not actually been implemented in any router for over 2.5 years and causes nothing more than confusion. It can always be added back if it forms part of a future solution; possibly as part of a more general database structure rethink. Signed-off-by: David Shah <dave@ds0.me>
Diffstat (limited to 'ecp5/arch.h')
-rw-r--r--ecp5/arch.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/ecp5/arch.h b/ecp5/arch.h
index 8c7e13e4..ecf653fc 100644
--- a/ecp5/arch.h
+++ b/ecp5/arch.h
@@ -886,15 +886,6 @@ struct Arch : BaseCtx
return range;
}
- PipRange getWireAliases(WireId wire) const
- {
- PipRange range;
- NPNR_ASSERT(wire != WireId());
- range.b.cursor = nullptr;
- range.e.cursor = nullptr;
- return range;
- }
-
std::string getPipTilename(PipId pip) const
{
auto &tileloc = chip_info->tile_info[pip.location.y * chip_info->width + pip.location.x];