Moved the "Generating output" statement for "gds write" after the
calls on subcells, as otherwise the statement is confusing.
This commit is contained in:
parent
bca4b97b04
commit
522171510c
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue