aboutsummaryrefslogtreecommitdiffstats
path: root/common/place_common.cc
diff options
context:
space:
mode:
authorEddie Hung <eddieh@ece.ubc.ca>2018-11-13 16:04:59 -0800
committerEddie Hung <eddieh@ece.ubc.ca>2018-11-13 16:33:01 -0800
commitcab91b035b591f331e6ca19f3593fa030087a7e0 (patch)
treea1c46f9a13a343538c2fb93bf6b0ae3c011de6e1 /common/place_common.cc
parent6527e3b6aedf399f2eff5244bff78da0c08f82a6 (diff)
downloadnextpnr-cab91b035b591f331e6ca19f3593fa030087a7e0.tar.gz
nextpnr-cab91b035b591f331e6ca19f3593fa030087a7e0.tar.bz2
nextpnr-cab91b035b591f331e6ca19f3593fa030087a7e0.zip
[common] Fix 'after after'
Diffstat (limited to 'common/place_common.cc')
-rw-r--r--common/place_common.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/place_common.cc b/common/place_common.cc
index 1c262c6f..3def2b25 100644
--- a/common/place_common.cc
+++ b/common/place_common.cc
@@ -473,7 +473,7 @@ class ConstraintLegaliseWorker
return false;
}
}
- print_stats("after legalising chains");
+ print_stats("legalising chains");
for (auto rippedCell : rippedCells) {
bool res = place_single_cell(ctx, ctx->cells.at(rippedCell).get(), true);
if (!res) {
@@ -481,7 +481,7 @@ class ConstraintLegaliseWorker
return false;
}
}
- print_stats("after replacing ripped up cells");
+ print_stats("replacing ripped up cells");
for (auto cell : sorted(ctx->cells))
if (get_constraints_distance(ctx, cell.second) != 0)
log_error("constraint satisfaction check failed for cell '%s' at Bel '%s'\n", cell.first.c_str(ctx),