Corrected an error in "series_sort" that will overwrite memory

randomly if combining series devices that do not have an "S"
property (which is the typical case).  This will normally result in
a crash.
This commit is contained in:
Tim Edwards
2021-07-15 16:03:43 -04:00
parent 064195ecc9
commit a332c23524
4 changed files with 897 additions and 4 deletions
+2 -1
View File
@@ -650,7 +650,8 @@ proc netgen::lvs { name1 name2 {setupfile setup.tcl} {logfile comp.out} args} {
puts stdout "Result: " nonewline
netgen::log echo on
if {$pinsgood == 0} {
netgen::log put "The top level cell failed pin matching.\n"
# NOTE: Need to disambiguate these two cases. . .
netgen::log put "Cells failed matching, or top level cell failed pin matching.\n"
} else {
verify only
}