Corrected the "lef writeall" command to add the "-hide" option, as

is available for "lef write".  This was inadvertently omitted.
This commit is contained in:
Tim Edwards
2020-03-05 13:14:47 -05:00
parent b6cb1fb54a
commit 7413d89da1
5 changed files with 10 additions and 6 deletions
+2 -1
View File
@@ -361,7 +361,8 @@ drcWhyCreate(whystring)
int i;
char **newList;
newList = (char **)mallocMagic((DRCCurStyle->DRCWhySize + 51) * sizeof(char *));
for (i = 0; i < DRCCurStyle->DRCWhySize; i++)
newList[0] = (char *)NULL;
for (i = 1; i <= DRCCurStyle->DRCWhySize; i++)
newList[i] = DRCCurStyle->DRCWhyList[i];
if (DRCCurStyle->DRCWhySize > 0)
freeMagic((char *)DRCCurStyle->DRCWhyList);