diff options
author | gatecat <gatecat@ds0.me> | 2021-09-22 16:57:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-22 16:57:49 +0100 |
commit | 41c07126ec0934918ab1bb44ad2dfe676024fadf (patch) | |
tree | fca50af3663d3965fbf959f971d3de3f82364c3c /common | |
parent | 035452d938a6ba005ecc7ee9bd308879eaff6069 (diff) | |
parent | 4d90850676d45bff9802e9b0e668cb4d27dccb24 (diff) | |
download | nextpnr-41c07126ec0934918ab1bb44ad2dfe676024fadf.tar.gz nextpnr-41c07126ec0934918ab1bb44ad2dfe676024fadf.tar.bz2 nextpnr-41c07126ec0934918ab1bb44ad2dfe676024fadf.zip |
Merge pull request #821 from YosysHQ/gatecat/dsp-fix
nexus: Fix DSP macro placement
Diffstat (limited to 'common')
-rw-r--r-- | common/placer1.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/common/placer1.cc b/common/placer1.cc index efa8a674..5e9c0f6d 100644 --- a/common/placer1.cc +++ b/common/placer1.cc @@ -414,10 +414,6 @@ class SAPlacer } } } - for (auto &cell : ctx->cells) - if (get_constraints_distance(ctx, cell.second.get()) != 0) - log_error("constraint satisfaction check failed for cell '%s' at Bel '%s'\n", cell.first.c_str(ctx), - ctx->nameOfBel(cell.second->bel)); timing_analysis(ctx); return true; |