Changeset 609 for branches/GNU/src/binutils/gas/frags.h
- Timestamp:
- Aug 16, 2003, 6:59:22 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/binutils/gas/frags.h
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r608 r609 39 39 40 40 BUG: it may be smarter to have a single pointer off to various different 41 notes for different frag kinds. See how code pans. 41 notes for different frag kinds. See how code pans. */ 42 42 43 43 struct frag { 44 44 /* Object file address (as an octet offset). */ 45 45 addressT fr_address; 46 /* Chain forward; ascending address order. Rooted in frch_root. */ 47 struct frag *fr_next; 46 /* When relaxing multiple times, remember the address the frag had 47 in the last relax pass. */ 48 addressT last_fr_address; 48 49 49 50 /* (Fixed) number of octets we know we have. May be 0. */ … … 53 54 offsetT fr_var; 54 55 /* For variable-length tail. */ 56 offsetT fr_offset; 57 /* For variable-length tail. */ 55 58 symbolS *fr_symbol; 56 /* For variable-length tail. */57 offsetT fr_offset;58 59 /* Points to opcode low addr byte, for relaxation. */ 59 60 char *fr_opcode; 61 62 /* Chain forward; ascending address order. Rooted in frch_root. */ 63 struct frag *fr_next; 64 65 /* Where the frag was created, or where it became a variant frag. */ 66 char *fr_file; 67 unsigned int fr_line; 60 68 61 69 #ifndef NO_LISTING … … 86 94 TC_FRAG_TYPE tc_frag_data; 87 95 #endif 88 89 /* Where the frag was created, or where it became a variant frag. */90 char *fr_file;91 unsigned int fr_line;92 96 93 97 /* Data begins here. */ -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.