Changeset 1153
- Timestamp:
- Feb 3, 2004, 8:55:36 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/src/emxomf/emxomf.c
-
Property cvs2svn:cvs-rev
changed from
1.34
to1.35
r1152 r1153 1150 1150 add_extdef (&started, str_ptr + sym_ptr[i].n_un.n_strx, sym_more[i].hll_type); 1151 1151 } 1152 #if 0/* this isn't actually required if only the assembler could do what it's supposed to... */1152 #if 1 /* this isn't actually required if only the assembler could do what it's supposed to... */ 1153 1153 else if (sym_ptr[i].n_type >= N_WEAKA && sym_ptr[i].n_type <= N_WEAKB) 1154 1154 { /* Not convinced about this yet, I mean there should really be … … 1755 1755 break; 1756 1756 case N_TEXT|N_EXT: 1757 case N_WEAKT: 1757 1758 *(dword *)(src + r->r_address) = 0; 1758 1759 break; 1759 1760 case N_DATA: 1760 1761 case N_DATA|N_EXT: 1762 case N_WEAKD: 1761 1763 *(dword *)(src + r->r_address) -= start_data; 1762 1764 break; 1763 1765 case N_BSS: 1764 1766 case N_BSS|N_EXT: 1767 case N_WEAKB: 1765 1768 *(dword *)(src + r->r_address) -= start_bss; 1766 1769 break; -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.