diff options
author | gatecat <gatecat@ds0.me> | 2021-03-22 18:31:32 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-22 18:31:32 +0000 |
commit | f6ae068cb205527d63d93e5b3581b85a22f90f34 (patch) | |
tree | 93704cb3edc4497651e23adfb7d6541eab1bb907 /fpga_interchange/arch.cc | |
parent | 53ed6979a964f3eaaabc0d97399eec9b4c3347f9 (diff) | |
parent | e7d81913a48bffd970f7a92acc44eb36d9f996f7 (diff) | |
download | nextpnr-f6ae068cb205527d63d93e5b3581b85a22f90f34.tar.gz nextpnr-f6ae068cb205527d63d93e5b3581b85a22f90f34.tar.bz2 nextpnr-f6ae068cb205527d63d93e5b3581b85a22f90f34.zip |
Merge pull request #632 from litghost/add_check_pip_for_net
Add "checkPipAvailForNet" to Arch API.
Diffstat (limited to 'fpga_interchange/arch.cc')
-rw-r--r-- | fpga_interchange/arch.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fpga_interchange/arch.cc b/fpga_interchange/arch.cc index 1cefb6fe..5f3a5eed 100644 --- a/fpga_interchange/arch.cc +++ b/fpga_interchange/arch.cc @@ -1587,7 +1587,7 @@ void Arch::bindWire(WireId wire, NetInfo *net, PlaceStrength strength) refreshUiWire(wire); } -bool Arch::check_pip_avail_for_net(PipId pip, NetInfo *net) const +bool Arch::checkPipAvailForNet(PipId pip, NetInfo *net) const { NPNR_ASSERT(pip != PipId()); auto pip_iter = pip_to_net.find(pip); @@ -1725,7 +1725,7 @@ bool Arch::check_pip_avail_for_net(PipId pip, NetInfo *net) const return true; } -bool Arch::checkPipAvail(PipId pip) const { return check_pip_avail_for_net(pip, nullptr); } +bool Arch::checkPipAvail(PipId pip) const { return checkPipAvailForNet(pip, nullptr); } Arch::~Arch() {} |