3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-02-07 17:48:00 +00:00

opt_expr: use newcelltypes

This commit is contained in:
Emil J. Tywoniak 2025-11-25 15:15:16 +01:00
parent 2e2f9e2469
commit d1ade01286
2 changed files with 5 additions and 7 deletions

View file

@ -415,7 +415,7 @@ static constexpr Categories categories;
namespace Compat {
static constexpr auto internals_all = Categories::complement(categories.is_stdcell);
static constexpr auto internals_mem_ff = Categories::meet(categories.is_ff, categories.is_mem_noff);
// auto stdcells_mem = Categories::meet(internals_all, categories.is_mem_noff);
static constexpr auto stdcells_mem = Categories::meet(categories.is_stdcell, categories.is_mem_noff);
};
namespace {