aboutsummaryrefslogtreecommitdiffstats
path: root/fpga_interchange
diff options
context:
space:
mode:
authorKeith Rothman <537074+litghost@users.noreply.github.com>2021-02-04 12:57:35 -0800
committerKeith Rothman <537074+litghost@users.noreply.github.com>2021-02-04 16:38:33 -0800
commit9afa8a9bea0f501130562b5141ad25c2335b3ef3 (patch)
tree84836e405f8051ca754ca25eee0027605c0ea21b /fpga_interchange
parent22c3c9c303b5a769f1e00052aa4682fe53bc23f9 (diff)
downloadnextpnr-9afa8a9bea0f501130562b5141ad25c2335b3ef3.tar.gz
nextpnr-9afa8a9bea0f501130562b5141ad25c2335b3ef3.tar.bz2
nextpnr-9afa8a9bea0f501130562b5141ad25c2335b3ef3.zip
Remove unused method getReservedWireNet.
This was a holdover from the nextpnr-xilinx arch. Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
Diffstat (limited to 'fpga_interchange')
-rw-r--r--fpga_interchange/arch.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/fpga_interchange/arch.h b/fpga_interchange/arch.h
index cf87aa14..34988105 100644
--- a/fpga_interchange/arch.h
+++ b/fpga_interchange/arch.h
@@ -929,13 +929,6 @@ struct Arch : BaseCtx
return w2n == wire_to_net.end() || w2n->second == nullptr;
}
- NetInfo *getReservedWireNet(WireId wire) const
- {
- NPNR_ASSERT(wire != WireId());
- auto w2n = reserved_wires.find(wire);
- return w2n == reserved_wires.end() ? nullptr : w2n->second;
- }
-
NetInfo *getBoundWireNet(WireId wire) const
{
NPNR_ASSERT(wire != WireId());