diff options
author | Miodrag Milanović <mmicko@gmail.com> | 2020-10-15 12:22:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-15 12:22:15 +0200 |
commit | d5dde5df4619f31d3fdd7c3ec3439c6989355894 (patch) | |
tree | 83d380897bc119f7f4295a8f795e23a826e62735 /ice40 | |
parent | 576baa994f4b9e1746a231469bfd9e65d1d5a2b4 (diff) | |
parent | b18ea204c2cd88a5fad8989f4597cfa3a8152ca1 (diff) | |
download | nextpnr-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 'ice40')
-rw-r--r-- | ice40/arch.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/ice40/arch.h b/ice40/arch.h index 0af0a5dd..02519252 100644 --- a/ice40/arch.h +++ b/ice40/arch.h @@ -782,15 +782,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; - } - BelId getPackagePinBel(const std::string &pin) const; std::string getBelPackagePin(BelId bel) const; |