Moved the "Generating output" statement for "gds write" after the

calls on subcells, as otherwise the statement is confusing.
This commit is contained in:
Tim Edwards 2021-02-03 11:09:58 -05:00
parent bca4b97b04
commit 522171510c
2 changed files with 4 additions and 4 deletions

View File

@ -1 +1 @@
8.3.123
8.3.124

View File

@ -809,9 +809,6 @@ calmaProcessDef(def, outf, do_library)
if (isReadOnly && hasContent && CalmaAddendum) return (0);
/* Give some feedback to the user */
TxPrintf(" Generating output for cell %s\n", def->cd_name);
/*
* Output the definitions for any of our descendants that have
* not already been output. Numbers are assigned to the subcells
@ -823,6 +820,9 @@ calmaProcessDef(def, outf, do_library)
if (DBCellEnum(def, calmaProcessUse, (ClientData) outf) != 0)
return 1;
/* Give some feedback to the user */
TxPrintf(" Generating output for cell %s\n", def->cd_name);
if (isReadOnly && hasContent)
{
char *buffer, *offptr, *retfilename;