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:
parent
0598f4edf7
commit
8b05346409
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue