- Timestamp:
- Feb 9, 2004, 1:33:40 AM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/src/emxomf/weakld.c
-
Property cvs2svn:cvs-rev
changed from
1.26
to1.27
r1208 r1209 1518 1518 * 2. adding a WKEXT where a PUBLIC or COMM exists. 1519 1519 * 3. adding a WKEXT where a UNDEF which isn't UNCERTAIN exists. 1520 * 4. adding a COMM where a !WEAK COMM exists.1520 * 4. adding a COMM where a !WEAK COMM or PUBLIC exists. 1521 1521 * 5. adding a WEAK PUBLIC or WEAK COMM where a PUBLIC or COMM exists. 1522 1522 * 6. adding a WEAK UNDEF where WEAK UNDEF exists. … … 1609 1609 * 2. adding a WKEXT where a PUBLIC or COMM exists. 1610 1610 * 3. adding a WKEXT where a UNDEF which isn't UNCERTAIN exists. 1611 * 4. adding a COMM where a !WEAK COMM exists.1611 * 4. adding a COMM where a !WEAK COMM or PUBLIC exists. 1612 1612 * 5. adding a WEAK PUBLIC or WEAK COMM where a PUBLIC or COMM exists. 1613 1613 * 6. adding a WEAK UNDEF where WEAK UNDEF exists. … … 1625 1625 ) || ( /* 4 */ 1626 1626 (fFlags & WLDSF_TYPEMASK) == WLDSF_COMM 1627 && ( pSym->fFlags & (WLDSF_TYPEMASK | WLDSF_WEAK)) == WLDSF_COMM1627 && ((pSym->fFlags & (WLDSF_TYPEMASK | WLDSF_WEAK)) == WLDSF_COMM || (pSym->fFlags & WLDSF_TYPEMASK) == WLDSF_PUBLIC) 1628 1628 ) || ( /* 5 */ 1629 1629 ((fFlags & (WLDSF_TYPEMASK | WLDSF_WEAK)) == (WLDSF_PUBLIC | WLDSF_WEAK) || (fFlags & (WLDSF_TYPEMASK | WLDSF_WEAK)) == (WLDSF_COMM | WLDSF_WEAK)) -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.