diff options
Diffstat (limited to 'common/place_sa.cc')
-rw-r--r-- | common/place_sa.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/place_sa.cc b/common/place_sa.cc index 1178a247..2a56b177 100644 --- a/common/place_sa.cc +++ b/common/place_sa.cc @@ -254,7 +254,7 @@ BelId random_bel_for_cell(Context *ctx, CellInfo *cell, SAState &state) } } -void place_design_sa(Context *ctx) +bool place_design_sa(Context *ctx) { SAState state; @@ -409,6 +409,7 @@ void place_design_sa(Context *ctx) ctx->getBelName(bel).c_str(ctx), cell_text.c_str()); } } + return true; } NEXTPNR_NAMESPACE_END |