Skip to content

Commit e70b125

Browse files
committed
check: Adjust prints
1 parent 3f71bc4 commit e70b125

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

passes/cmds/check.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -316,10 +316,10 @@ struct CheckPass : public Pass {
316316
SigBit edge_to = sigmap(cell->getPort(to_port))[to_bit];
317317

318318
if (edge_from == from && edge_to == to && nhits++ < HITS_LIMIT)
319-
message += stringf(" %s[%d] --> %s[%d]\n", log_id(from_port), from_bit,
319+
message += stringf(" %s[%d] --> %s[%d]\n", log_id(from_port), from_bit,
320320
log_id(to_port), to_bit);
321321
if (nhits == HITS_LIMIT)
322-
message += " ...\n";
322+
message += " ...\n";
323323
}
324324
};
325325

0 commit comments

Comments
 (0)