diff options
author | Alessandro Comodi <acomodi@antmicro.com> | 2021-07-12 17:02:55 +0200 |
---|---|---|
committer | Alessandro Comodi <acomodi@antmicro.com> | 2021-07-12 17:17:57 +0200 |
commit | 7abfeb11c3ff153b5d353404b7c7c6767f3823a9 (patch) | |
tree | 44fdb97d65f7b2e94295153e2d93ae2807c813e5 /common | |
parent | 3de0be7c06400702b37b79380feb82e0c76f8613 (diff) | |
download | nextpnr-7abfeb11c3ff153b5d353404b7c7c6767f3823a9.tar.gz nextpnr-7abfeb11c3ff153b5d353404b7c7c6767f3823a9.tar.bz2 nextpnr-7abfeb11c3ff153b5d353404b7c7c6767f3823a9.zip |
interchange: xdc and place constr: address review comments
Signed-off-by: Alessandro Comodi <acomodi@antmicro.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/placer_heap.cc | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/common/placer_heap.cc b/common/placer_heap.cc index 27144316..f8385cef 100644 --- a/common/placer_heap.cc +++ b/common/placer_heap.cc @@ -402,13 +402,6 @@ class HeAPPlacer for (auto &cell_entry : ctx->cells) { CellInfo *cell = cell_entry.second.get(); - if (cell->bel != BelId()) { - if (ctx->verbose) - log_error("Cell \'%s\' (%s) has already been constrianed by arch implementation", - cell->name.c_str(ctx), cell->type.c_str(ctx)); - continue; - } - auto loc = cell->attrs.find(ctx->id("BEL")); if (loc != cell->attrs.end()) { std::string loc_name = loc->second.as_string(); |