From a8509aee48ab2a2212bb771bf19eea5eb5d8f97c Mon Sep 17 00:00:00 2001 From: "Emil J. Tywoniak" Date: Tue, 25 Nov 2025 23:51:09 +0100 Subject: [PATCH] fixup! consteval: use newcelltypes --- kernel/consteval.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/consteval.h b/kernel/consteval.h index 7450661b2..82169f31e 100644 --- a/kernel/consteval.h +++ b/kernel/consteval.h @@ -42,7 +42,7 @@ struct ConstEval ConstEval(RTLIL::Module *module, RTLIL::State defaultval = RTLIL::State::Sm) : module(module), assign_map(module), defaultval(defaultval) { auto ct = NewCellTypes(); - ct.static_cell_types = StaticCellTypes::Compat::stdcells_nomem_noff; + ct.static_cell_types = StaticCellTypes::Compat::nomem_noff; for (auto &it : module->cells_) { if (!ct.cell_known(it.second->type))