3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-04-21 03:13:32 +00:00

signorm: disable in passes that use swap_names

This commit is contained in:
Emil J. Tywoniak 2026-03-16 22:45:29 +01:00
parent 3502a51598
commit 869a7303b0
12 changed files with 35 additions and 0 deletions

View file

@ -24,6 +24,9 @@ struct QlIoffPass : public Pass {
{
log_header(design, "Executing QL_IOFF pass.\n");
// TODO Disabled signorm because swap_names breaks fanout logic
design->sigNormalize(false);
ModWalker modwalker(design);
Module *module = design->top_module();
if (!module)