Corrected the LEF read routine so that it preserves the sticky flag

on labels while annotating other properties (this error was a simple
typo).
This commit is contained in:
Tim Edwards 2020-11-07 17:00:17 -05:00
parent 6d463a20fe
commit 61188031cb
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
8.3.77
8.3.78

View File

@ -1627,7 +1627,7 @@ LefReadPin(lefMacro, f, pinname, pinNum, oscale, is_imported)
needRect = FALSE;
lab->lab_flags &= ~(PORT_USE_MASK | PORT_DIR_MASK |
PORT_CLASS_MASK | PORT_SHAPE_MASK);
lab->lab_flags = pinNum | pinUse | pinDir | pinShape |
lab->lab_flags |= pinNum | pinUse | pinDir | pinShape |
PORT_DIR_MASK;
}
}