Corrected syntax information for the "equate" command, and added

output text for the "flatten" command when called as a netgen
command (as opposed to being called internally to LVS).
This commit is contained in:
Tim Edwards
2015-09-29 21:49:55 -04:00
parent fa90198826
commit d499854aed
5 changed files with 298 additions and 12 deletions
+2 -1
View File
@@ -529,13 +529,14 @@ void ReadSpiceFile(char *fname, int filenum, struct cellstack **CellStackPtr,
n = -1;
}
Printf("Duplicate cell %s in file; renaming.\n", nexttok);
Printf("Duplicate cell %s in file\n", nexttok);
while (tp != NULL) {
n++;
/* Append "[[n]]" to the preexisting model name to force uniqueness */
sprintf(ds, "[[%d]]", n);
tp = LookupCellFile(model, filenum);
}
Printf("Renaming original cell to %s\n", model);
InstanceRename(nexttok, model, filenum);
CellRehash(nexttok, model, filenum);
CellDefNoCase(nexttok, filenum);