Ignore:
Timestamp:
Aug 16, 2003, 6:59:22 PM (22 years ago)
Author:
bird
Message:

binutils v2.14 - offical sources.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/binutils/gas/frags.h

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r608 r609  
    3939
    4040   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.  */
    4242
    4343struct frag {
    4444  /* Object file address (as an octet offset).  */
    4545  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;
    4849
    4950  /* (Fixed) number of octets we know we have.  May be 0.  */
     
    5354  offsetT fr_var;
    5455  /* For variable-length tail.  */
     56  offsetT fr_offset;
     57  /* For variable-length tail.  */
    5558  symbolS *fr_symbol;
    56   /* For variable-length tail.  */
    57   offsetT fr_offset;
    5859  /* Points to opcode low addr byte, for relaxation.  */
    5960  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;
    6068
    6169#ifndef NO_LISTING
     
    8694  TC_FRAG_TYPE tc_frag_data;
    8795#endif
    88 
    89   /* Where the frag was created, or where it became a variant frag.  */
    90   char *fr_file;
    91   unsigned int fr_line;
    9296
    9397  /* Data begins here.  */
Note: See TracChangeset for help on using the changeset viewer.