3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-05-25 11:26:22 +00:00

signorm: disable passes that use rewrite_sigspecs

This commit is contained in:
Emil J. Tywoniak 2026-03-17 17:35:57 +01:00
parent 6447a39c0c
commit 4f665d6efc
6 changed files with 15 additions and 0 deletions

View file

@ -74,6 +74,9 @@ struct ConstmapPass : public Pass {
if (celltype.empty())
log_cmd_error("Missing required option -cell.\n");
// TODO disable signorm due to rewrite_sigspecs assert
design->sigNormalize(false);
if (design->has(celltype)) {
Module *existing = design->module(celltype);
bool has_port = false;