Reduce and clarify debugging message.

Add missing new line to "Flattening non-matched subcircuits.
This commit is contained in:
D. Mitch Bailey 2021-09-02 22:29:17 -07:00
parent d7355cea95
commit 2d6f1f71b5
2 changed files with 4 additions and 2 deletions

View File

@ -6894,7 +6894,9 @@ int reorderpins(struct hashlist *p, int file)
for (ob = ptr->cell; ob != NULL; ) {
/* Catch badness */
if (ob->next && (ob->next->node > 100000)) {
Fprintf(stdout, "Bad.\n");
if (ob->next->node % 100000 == 0) {
Fprintf(stdout, "Bad node. Node count %d\n", ob->next->node);
}
}
if (ob->type == FIRSTPIN) {

View File

@ -562,7 +562,7 @@ proc netgen::lvs { name1 name2 {setupfile setup.tcl} {logfile comp.out} args} {
if {[netgen::print queue] != {}} {
if {([lsearch $noflat [lindex $endval 0]] == -1) &&
([lsearch $noflat [lindex $endval 1]] == -1)} {
netgen::log put " Flattening non-matched subcircuits $endval"
netgen::log put " Flattening non-matched subcircuits $endval\n"
netgen::flatten class "[lindex $endval 0] $fnum1"
netgen::flatten class "[lindex $endval 1] $fnum2"
} else {