We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f71bc4 commit e70b125Copy full SHA for e70b125
passes/cmds/check.cc
@@ -316,10 +316,10 @@ struct CheckPass : public Pass {
316
SigBit edge_to = sigmap(cell->getPort(to_port))[to_bit];
317
318
if (edge_from == from && edge_to == to && nhits++ < HITS_LIMIT)
319
- message += stringf(" %s[%d] --> %s[%d]\n", log_id(from_port), from_bit,
+ message += stringf(" %s[%d] --> %s[%d]\n", log_id(from_port), from_bit,
320
log_id(to_port), to_bit);
321
if (nhits == HITS_LIMIT)
322
- message += " ...\n";
+ message += " ...\n";
323
}
324
};
325
0 commit comments