Remove unused method getReservedWireNet.

This was a holdover from the nextpnr-xilinx arch.

Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
This commit is contained in:
Keith Rothman 2021-02-04 12:57:35 -08:00
parent 22c3c9c303
commit 9afa8a9bea

View File

@ -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());