mirror of
https://github.com/YosysHQ/yosys
synced 2025-05-13 02:34:44 +00:00
Reduce pass verbosity
This commit is contained in:
parent
33c72b0f25
commit
ef9645990e
3 changed files with 5 additions and 5 deletions
|
@ -156,7 +156,7 @@ struct ExtractReducePass : public Pass
|
|||
else
|
||||
continue;
|
||||
|
||||
log("Working on cell %s...\n", cell->name.c_str());
|
||||
log_debug("Working on cell %s...\n", cell->name.c_str());
|
||||
|
||||
// If looking for a single chain, follow linearly to the sink
|
||||
pool<Cell*> sinks;
|
||||
|
@ -243,7 +243,7 @@ struct ExtractReducePass : public Pass
|
|||
//We have our list, go act on it
|
||||
for(auto head_cell : sinks)
|
||||
{
|
||||
log(" Head cell is %s\n", head_cell->name.c_str());
|
||||
log_debug(" Head cell is %s\n", head_cell->name.c_str());
|
||||
|
||||
//Avoid duplication if we already were covered
|
||||
if(consumed_cells.count(head_cell))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue