aboutsummaryrefslogtreecommitdiffstats
path: root/ecp5
diff options
context:
space:
mode:
authorMiodrag Milanović <mmicko@gmail.com>2020-10-15 12:22:15 +0200
committerGitHub <noreply@github.com>2020-10-15 12:22:15 +0200
commitd5dde5df4619f31d3fdd7c3ec3439c6989355894 (patch)
tree83d380897bc119f7f4295a8f795e23a826e62735 /ecp5
parent576baa994f4b9e1746a231469bfd9e65d1d5a2b4 (diff)
parentb18ea204c2cd88a5fad8989f4597cfa3a8152ca1 (diff)
downloadnextpnr-d5dde5df4619f31d3fdd7c3ec3439c6989355894.tar.gz
nextpnr-d5dde5df4619f31d3fdd7c3ec3439c6989355894.tar.bz2
nextpnr-d5dde5df4619f31d3fdd7c3ec3439c6989355894.zip
Merge pull request #509 from YosysHQ/dave/remove-wire-alias
Remove wire alias API
Diffstat (limited to 'ecp5')
-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];