3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-04-15 16:54:12 +00:00

opt_hier: disable signorm

This commit is contained in:
Emil J. Tywoniak 2026-03-11 21:26:12 +01:00
parent 4611e90533
commit 8bad1a2035

View file

@ -422,6 +422,11 @@ struct OptHierPass : Pass {
{
log_header(d, "Executing OPT_HIER pass.\n");
// TODO: This pass breaks in signorm
// since rewrite_sigspecs won't rewrite persistent sigmap
// and adding that rewrite is a performance risk
d->sigNormalize(false);
size_t argidx;
for (argidx = 1; argidx < args.size(); argidx++) {
break;