3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-07-24 16:12:33 +00:00

Bump Yosys to latest

This commit is contained in:
Akash Levy 2025-09-13 04:35:52 -07:00
commit f5cb0c328f
153 changed files with 1096 additions and 989 deletions

View file

@ -193,7 +193,7 @@ struct ExtractReducePass : public Pass
if (no_mux && gt == GateType::Mux)
continue;
log_debug("Working on cell %s...\n", cell->name.c_str());
log_debug("Working on cell %s...\n", cell->name);
// If looking for a single chain, follow linearly to the sink
pool<Cell*> sinks;
@ -280,7 +280,7 @@ struct ExtractReducePass : public Pass
//We have our list, go act on it
for(auto head_cell : sinks)
{
log_debug(" Head cell is %s\n", head_cell->name.c_str());
log_debug(" Head cell is %s\n", head_cell->name);
//Avoid duplication if we already were covered
if(consumed_cells.count(head_cell))