aboutsummaryrefslogtreecommitdiffstats
path: root/fpga_interchange
diff options
context:
space:
mode:
authorYRabbit <rabbit@yrabbit.cyou>2022-12-04 21:33:36 +1000
committerYRabbit <rabbit@yrabbit.cyou>2022-12-04 21:33:36 +1000
commite6a8d0f4fce4ce0c50ec5705ef75ad6982213d4e (patch)
tree4065a6dbc408bd4b76563ab6c86a1e84fc388394 /fpga_interchange
parent2e68962a025999ec85276f6362540c13ccfcd752 (diff)
parentdb25c5c88998aa73725f2a4625d74f38615aaa82 (diff)
downloadnextpnr-e6a8d0f4fce4ce0c50ec5705ef75ad6982213d4e.tar.gz
nextpnr-e6a8d0f4fce4ce0c50ec5705ef75ad6982213d4e.tar.bz2
nextpnr-e6a8d0f4fce4ce0c50ec5705ef75ad6982213d4e.zip
Merge branch 'master' into pll-pins
Diffstat (limited to 'fpga_interchange')
-rw-r--r--fpga_interchange/arch.cc2
-rw-r--r--fpga_interchange/arch.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/fpga_interchange/arch.cc b/fpga_interchange/arch.cc
index 3ce9f79e..4fc5d48d 100644
--- a/fpga_interchange/arch.cc
+++ b/fpga_interchange/arch.cc
@@ -1743,7 +1743,7 @@ void Arch::bindWire(WireId wire, NetInfo *net, PlaceStrength strength)
refreshUiWire(wire);
}
-bool Arch::checkPipAvailForNet(PipId pip, NetInfo *net) const
+bool Arch::checkPipAvailForNet(PipId pip, const NetInfo *net) const
{
NPNR_ASSERT(pip != PipId());
auto pip_iter = pip_to_net.find(pip);
diff --git a/fpga_interchange/arch.h b/fpga_interchange/arch.h
index aeb5578f..04f583d4 100644
--- a/fpga_interchange/arch.h
+++ b/fpga_interchange/arch.h
@@ -596,7 +596,7 @@ struct Arch : ArchAPI<ArchRanges>
void unbindPip(PipId pip) final;
bool checkPipAvail(PipId pip) const final;
- bool checkPipAvailForNet(PipId pip, NetInfo *net) const final;
+ bool checkPipAvailForNet(PipId pip, const NetInfo *net) const final;
NetInfo *getBoundPipNet(PipId pip) const final
{