register fragS *fragP;
register segT add_symbol_segment = absolute_section;
-
for (fixP = segP->fix_root; fixP; fixP = fixP->fx_next)
{
fragP = fixP->fx_frag;
} /* 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 <ian@cygnus.com>. */
+ /* 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 <ian@cygnus.com>. */
if (S_IS_COMMON (add_symbolP))
add_number += S_GET_VALUE (add_symbolP);
#endif
}
#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)
(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() */