diff options
author | Keith Rothman <537074+litghost@users.noreply.github.com> | 2021-02-26 09:44:52 -0800 |
---|---|---|
committer | Keith Rothman <537074+litghost@users.noreply.github.com> | 2021-02-26 11:01:22 -0800 |
commit | 78748a67be81dcd85706a06c2e1faaa39cf4394d (patch) | |
tree | 845d99253235a09f8aea84b95dbf655a3309dbce /fpga_interchange | |
parent | cfa449c3f3c5b151eb11ef79bc2cf571e98bbbed (diff) | |
download | nextpnr-78748a67be81dcd85706a06c2e1faaa39cf4394d.tar.gz nextpnr-78748a67be81dcd85706a06c2e1faaa39cf4394d.tar.bz2 nextpnr-78748a67be81dcd85706a06c2e1faaa39cf4394d.zip |
For now just return false in the site router.
Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
Diffstat (limited to 'fpga_interchange')
-rw-r--r-- | fpga_interchange/site_router.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpga_interchange/site_router.cc b/fpga_interchange/site_router.cc index 56bce01a..9d4fc57c 100644 --- a/fpga_interchange/site_router.cc +++ b/fpga_interchange/site_router.cc @@ -697,7 +697,7 @@ bool route_site(const Context *ctx, SiteInformation *site_info) // The simplistic solution (only select when 1 solution is available) // will likely solve initial problems. Once that is show to be wrong, // come back with something more general. - NPNR_ASSERT(false); + return false; } while (!wire_to_expansion.empty()); |