Merge branch 'master' into bplane

Conflicts:
	VERSION

Merge from master (LEF read:  Read all tokens for LEF CLASS record)
This commit is contained in:
Tim Edwards 2020-03-30 09:37:42 -04:00
commit d742550edc
1 changed files with 7 additions and 3 deletions

View File

@ -1593,10 +1593,14 @@ LefReadMacro(f, mname, oscale, importForeign)
switch (keyword)
{
case LEF_CLASS:
strcpy(tsave, "");
token = LefNextToken(f, TRUE);
if (*token != '\n')
DBPropPut(lefMacro, "LEFclass", StrDup((char **)NULL, token));
LefEndStatement(f);
while (*token != ';')
{
sprintf(tsave + strlen(tsave), " %s", token);
token = LefNextToken(f, TRUE);
}
DBPropPut(lefMacro, "LEFclass", StrDup((char **)NULL, tsave + 1));
break;
case LEF_SIZE:
token = LefNextToken(f, TRUE);