Added an assertion in ExtCell.c to force a fault if the technology

is NULL when writing a .ext file;  this should help with tracking
down an obscure bug.
This commit is contained in:
Tim Edwards 2020-08-03 08:18:58 -04:00
parent 0598f4edf7
commit 8b05346409
2 changed files with 3 additions and 1 deletions

View File

@ -1 +1 @@
8.3.46
8.3.47

View File

@ -308,6 +308,8 @@ extHeader(def, f)
bool propfound;
char *propvalue;
ASSERT(DBTechName != NULL, "extHeader");
/* Output a timestamp (should be first) */
fprintf(f, "timestamp %d\n", def->cd_timestamp);