Deleted Added
full compact
frags.h (60484) frags.h (61843)
1/* frags.h - Header file for the frag concept.
1/* frags.h - Header file for the frag concept.
2 Copyright (C) 1987, 92, 93, 94, 95, 97, 98, 1999
2 Copyright (C) 1987, 92, 93, 94, 95, 97, 98, 99, 2000
3 Free Software Foundation, Inc.
4
5 This file is part of GAS, the GNU Assembler.
6
7 GAS is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.

--- 35 unchanged lines hidden (view full) ---

46{
47 /* Object file address (as an octet offset). */
48 addressT fr_address;
49 /* Chain forward; ascending address order. Rooted in frch_root. */
50 struct frag *fr_next;
51
52 /* (Fixed) number of octets we know we have. May be 0. */
53 offsetT fr_fix;
3 Free Software Foundation, Inc.
4
5 This file is part of GAS, the GNU Assembler.
6
7 GAS is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.

--- 35 unchanged lines hidden (view full) ---

46{
47 /* Object file address (as an octet offset). */
48 addressT fr_address;
49 /* Chain forward; ascending address order. Rooted in frch_root. */
50 struct frag *fr_next;
51
52 /* (Fixed) number of octets we know we have. May be 0. */
53 offsetT fr_fix;
54 /* (Variable) number of octets after above. May be 0. */
54 /* May be used for (Variable) number of octets after above.
55 The generic frag handling code no longer makes any use of fr_var. */
55 offsetT fr_var;
56 /* For variable-length tail. */
57 symbolS *fr_symbol;
58 /* For variable-length tail. */
59 offsetT fr_offset;
60 /* Points to opcode low addr byte, for relaxation. */
61 char *fr_opcode;
62

--- 97 unchanged lines hidden ---
56 offsetT fr_var;
57 /* For variable-length tail. */
58 symbolS *fr_symbol;
59 /* For variable-length tail. */
60 offsetT fr_offset;
61 /* Points to opcode low addr byte, for relaxation. */
62 char *fr_opcode;
63

--- 97 unchanged lines hidden ---