aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorgatecat <gatecat@ds0.me>2021-09-22 13:14:45 +0100
committergatecat <gatecat@ds0.me>2021-09-22 13:14:45 +0100
commit4d90850676d45bff9802e9b0e668cb4d27dccb24 (patch)
treefca50af3663d3965fbf959f971d3de3f82364c3c /common
parent53e94653f3f6b2d6e99db754027d65203c9787f8 (diff)
downloadnextpnr-4d90850676d45bff9802e9b0e668cb4d27dccb24.tar.gz
nextpnr-4d90850676d45bff9802e9b0e668cb4d27dccb24.tar.bz2
nextpnr-4d90850676d45bff9802e9b0e668cb4d27dccb24.zip
placer1: Remove redundant relative constraint check
Macros with potentially inconsistent spacing are now permissible. Signed-off-by: gatecat <gatecat@ds0.me>
Diffstat (limited to 'common')
-rw-r--r--common/placer1.cc4
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;