From cbe73c9047f36e9c11fc6af8b640f6e329f8bb7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Povi=C5=A1er?= Date: Sat, 19 Oct 2024 01:17:43 +0200 Subject: [PATCH] cellmatch: Visit whiteboxes for `-derive_luts` --- passes/techmap/cellmatch.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/passes/techmap/cellmatch.cc b/passes/techmap/cellmatch.cc index 48b1eebf7..a2a4c4b2c 100644 --- a/passes/techmap/cellmatch.cc +++ b/passes/techmap/cellmatch.cc @@ -214,7 +214,7 @@ struct CellmatchPass : Pass { r.first->second = new Design; Design *map_design = r.first->second; - for (auto m : d->selected_whole_modules_warn()) { + for (auto m : d->selected_whole_modules_warn(/* visit whiteboxes */derive_luts)) { std::vector luts; if (!derive_module_luts(m, luts)) continue;