Skip to content

Commit

Permalink
opt_expr: change info message
Browse files Browse the repository at this point in the history
  • Loading branch information
widlarizer committed Jul 15, 2024
1 parent 01f332e commit 532188f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion passes/opt/opt_expr.cc
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ void replace_const_cells(RTLIL::Design *design, RTLIL::Module *module, bool cons
if (!cells.sort()) {
// There might be a combinational loop, or there might be constants on the output of cells. 'check' may find out more.
// ...unless this is a coarse-grained cell loop, but not a bit loop, in which case it won't, and all is good.
log("Couldn't topologically sort cells, Yosys performance may be degraded.\nRunning 'check' is recommended.\n");
log("Couldn't topologically sort cells, optimizing module %s may take a longer time.\n", log_id(module));
}

for (auto cell : cells.sorted)
Expand Down

0 comments on commit 532188f

Please sign in to comment.