Merge branch 'master' into bplane

Merging fix to "lef write" to preserve SITE, from master branch.
This commit is contained in:
Tim Edwards 2020-04-01 11:02:08 -04:00
commit 08fabeedd5
1 changed files with 4 additions and 0 deletions

View File

@ -824,6 +824,10 @@ lefWriteMacro(def, f, scale, hide)
if (propfound)
fprintf(f, " SYMMETRY %s ;\n", propvalue);
propvalue = (char *)DBPropGet(def, "LEFsite", &propfound);
if (propfound)
fprintf(f, " SITE %s ;\n", propvalue);
/* Generate cell for yanking obstructions */
lc.lefYank = DBCellLookDef("__lefYank__");