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:
parent
6d463a20fe
commit
61188031cb
|
|
@ -1627,7 +1627,7 @@ LefReadPin(lefMacro, f, pinname, pinNum, oscale, is_imported)
|
||||||
needRect = FALSE;
|
needRect = FALSE;
|
||||||
lab->lab_flags &= ~(PORT_USE_MASK | PORT_DIR_MASK |
|
lab->lab_flags &= ~(PORT_USE_MASK | PORT_DIR_MASK |
|
||||||
PORT_CLASS_MASK | PORT_SHAPE_MASK);
|
PORT_CLASS_MASK | PORT_SHAPE_MASK);
|
||||||
lab->lab_flags = pinNum | pinUse | pinDir | pinShape |
|
lab->lab_flags |= pinNum | pinUse | pinDir | pinShape |
|
||||||
PORT_DIR_MASK;
|
PORT_DIR_MASK;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue