From: Ken Raeburn Date: Fri, 10 Mar 1995 22:33:28 +0000 (+0000) Subject: whitespace/comment formatting X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0eb1f9cefab7ef6c52e038bdab571fe4c7d4f931;p=binutils-gdb.git whitespace/comment formatting --- diff --git a/gas/config/obj-coff.c b/gas/config/obj-coff.c index 0fb2d26aba2..1c9f9cd6046 100644 --- a/gas/config/obj-coff.c +++ b/gas/config/obj-coff.c @@ -3489,7 +3489,6 @@ fixup_segment (segP, this_segment_type) register fragS *fragP; register segT add_symbol_segment = absolute_section; - for (fixP = segP->fix_root; fixP; fixP = fixP->fx_next) { fragP = fixP->fx_frag; @@ -3672,11 +3671,10 @@ fixup_segment (segP, this_segment_type) } /* COBR */ #endif /* TC_I960 */ #if defined (TC_I386) || defined (TE_LYNX) - /* 386 COFF uses a peculiar format in - which the value of a common symbol is - stored in the .text segment (I've - checked this on SVR3.2 and SCO 3.2.2) - Ian Taylor . */ + /* 386 COFF uses a peculiar format in which the + value of a common symbol is stored in the .text + segment (I've checked this on SVR3.2 and SCO + 3.2.2) Ian Taylor . */ if (S_IS_COMMON (add_symbolP)) add_number += S_GET_VALUE (add_symbolP); #endif @@ -3724,10 +3722,10 @@ fixup_segment (segP, this_segment_type) } #endif #ifdef WARN_SIGNED_OVERFLOW_WORD - /* Warn if a .word value is too large when treated as - a signed number. We already know it is not too - negative. This is to catch over-large switches - generated by gcc on the 68k. */ + /* Warn if a .word value is too large when treated as a + signed number. We already know it is not too negative. + This is to catch over-large switches generated by gcc on + the 68k. */ if (!flag_signed_overflow_ok && size == 2 && add_number > 0x7fff) @@ -3737,8 +3735,8 @@ fixup_segment (segP, this_segment_type) (unsigned long) (fragP->fr_address + where)); #endif } /* not a bit fix */ - /* once this fix has been applied, we don't have to output anything - nothing more need be done -*/ + /* Once this fix has been applied, we don't have to output + anything nothing more need be done. */ md_apply_fix (fixP, add_number); } /* For each fixS in this segment. */ } /* fixup_segment() */