From bea9907b2a19c3ed94595a88003b8900938b0ad9 Mon Sep 17 00:00:00 2001 From: Timothy Wall Date: Thu, 3 Feb 2000 18:20:23 +0000 Subject: octets vs bytes changes for GAS --- gas/frags.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'gas/frags.h') diff --git a/gas/frags.h b/gas/frags.h index b188e33..b4c6e38 100644 --- a/gas/frags.h +++ b/gas/frags.h @@ -44,14 +44,14 @@ struct obstack; struct frag { - /* Object file address. */ + /* Object file address (as an octet offset). */ addressT fr_address; /* Chain forward; ascending address order. Rooted in frch_root. */ struct frag *fr_next; - /* (Fixed) number of chars we know we have. May be 0. */ + /* (Fixed) number of octets we know we have. May be 0. */ offsetT fr_fix; - /* (Variable) number of chars after above. May be 0. */ + /* (Variable) number of octets after above. May be 0. */ offsetT fr_var; /* For variable-length tail. */ symbolS *fr_symbol; @@ -101,6 +101,7 @@ struct frag instead, use frag_now_fix (). */ COMMON fragS *frag_now; extern addressT frag_now_fix PARAMS ((void)); +extern addressT frag_now_fix_octets PARAMS ((void)); /* For foreign-segment symbol fixups. */ COMMON fragS zero_address_frag; -- cgit v1.1