Corrected an error that crept into the netgen.tcl script that causes
the "failed pin matching" error message to appear for cells mismatching topology (in which case pin matching is never done).
This commit is contained in:
parent
a984ac1a4d
commit
287f5963d1
|
|
@ -532,7 +532,7 @@ proc netgen::lvs { name1 name2 {setupfile setup.tcl} {logfile comp.out} args} {
|
||||||
}
|
}
|
||||||
set properr {}
|
set properr {}
|
||||||
set matcherr {}
|
set matcherr {}
|
||||||
set pinsgood 0
|
set pinsgood -1
|
||||||
while {$endval != {}} {
|
while {$endval != {}} {
|
||||||
if {$dolist == 1} {
|
if {$dolist == 1} {
|
||||||
netgen::run -list converge
|
netgen::run -list converge
|
||||||
|
|
@ -585,7 +585,7 @@ proc netgen::lvs { name1 name2 {setupfile setup.tcl} {logfile comp.out} args} {
|
||||||
netgen::log echo on
|
netgen::log echo on
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} elseif {$uresult > 0} {
|
||||||
# Match pins
|
# Match pins
|
||||||
netgen::log echo off
|
netgen::log echo off
|
||||||
if {$dolist == 1} {
|
if {$dolist == 1} {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue