aboutsummaryrefslogtreecommitdiffstats
path: root/machxo2/bitstream.cc
diff options
context:
space:
mode:
Diffstat (limited to 'machxo2/bitstream.cc')
-rw-r--r--machxo2/bitstream.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/machxo2/bitstream.cc b/machxo2/bitstream.cc
index a499d8a3..a095333a 100644
--- a/machxo2/bitstream.cc
+++ b/machxo2/bitstream.cc
@@ -200,7 +200,8 @@ void write_bitstream(Context *ctx, std::string text_config_file)
for (auto &cell : ctx->cells) {
CellInfo *ci = cell.second.get();
if (ci->bel == BelId()) {
- log_warning("found unplaced cell '%s' during bitstream gen\n", ci->name.c_str(ctx));
+ log_warning("found unplaced cell '%s' during bitstream gen. Not writing to bitstream.\n", ci->name.c_str(ctx));
+ continue;
}
BelId bel = ci->bel;
if (ci->type == id_FACADE_SLICE) {