diff options
author | YRabbit <rabbit@yrabbit.cyou> | 2022-12-04 21:33:36 +1000 |
---|---|---|
committer | YRabbit <rabbit@yrabbit.cyou> | 2022-12-04 21:33:36 +1000 |
commit | e6a8d0f4fce4ce0c50ec5705ef75ad6982213d4e (patch) | |
tree | 4065a6dbc408bd4b76563ab6c86a1e84fc388394 /ecp5/arch.h | |
parent | 2e68962a025999ec85276f6362540c13ccfcd752 (diff) | |
parent | db25c5c88998aa73725f2a4625d74f38615aaa82 (diff) | |
download | nextpnr-e6a8d0f4fce4ce0c50ec5705ef75ad6982213d4e.tar.gz nextpnr-e6a8d0f4fce4ce0c50ec5705ef75ad6982213d4e.tar.bz2 nextpnr-e6a8d0f4fce4ce0c50ec5705ef75ad6982213d4e.zip |
Merge branch 'master' into pll-pins
Diffstat (limited to 'ecp5/arch.h')
-rw-r--r-- | ecp5/arch.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ecp5/arch.h b/ecp5/arch.h index 12f043b7..86504520 100644 --- a/ecp5/arch.h +++ b/ecp5/arch.h @@ -847,7 +847,7 @@ struct Arch : BaseArch<ArchRanges> return false; } bool checkPipAvail(PipId pip) const override { return (getBoundPipNet(pip) == nullptr) && !is_pip_blocked(pip); } - bool checkPipAvailForNet(PipId pip, NetInfo *net) const override + bool checkPipAvailForNet(PipId pip, const NetInfo *net) const override { NetInfo *bound_net = getBoundPipNet(pip); return (bound_net == nullptr || bound_net == net) && !is_pip_blocked(pip); |