aboutsummaryrefslogtreecommitdiff
path: root/gas/config
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@cygnus>1995-03-10 22:33:28 +0000
committerKen Raeburn <raeburn@cygnus>1995-03-10 22:33:28 +0000
commit0eb1f9cefab7ef6c52e038bdab571fe4c7d4f931 (patch)
treeb74c95d01ef7ad5d0113c51c860c0b67e5458415 /gas/config
parent6a107a2838db6d75e99852196635240d1747d791 (diff)
downloadfsf-binutils-gdb-0eb1f9cefab7ef6c52e038bdab571fe4c7d4f931.zip
fsf-binutils-gdb-0eb1f9cefab7ef6c52e038bdab571fe4c7d4f931.tar.gz
fsf-binutils-gdb-0eb1f9cefab7ef6c52e038bdab571fe4c7d4f931.tar.bz2
whitespace/comment formatting
Diffstat (limited to 'gas/config')
-rw-r--r--gas/config/obj-coff.c22
1 files changed, 10 insertions, 12 deletions
diff --git a/gas/config/obj-coff.c b/gas/config/obj-coff.c
index 0fb2d26..1c9f9cd 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 <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
@@ -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() */