3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-05-20 08:59:36 +00:00

Fixed not intentional log_signal removal

This commit is contained in:
Miodrag Milanovic 2026-05-15 12:34:54 +02:00
parent 965a3e67f0
commit e4a3b44e8e
2 changed files with 2 additions and 2 deletions

View file

@ -502,7 +502,7 @@ struct BufnormPass : public Pass {
if (conn.second != newsig) {
log(" fixing input signal on cell %s port %s: %s\n",
cell, conn.first.unescape(), newsig);
cell, conn.first.unescape(), log_signal(newsig));
cell->setPort(conn.first, newsig);
count_updated_cellports++;
}