whitespace/comment formatting
authorKen Raeburn <raeburn@cygnus>
Fri, 10 Mar 1995 22:33:28 +0000 (22:33 +0000)
committerKen Raeburn <raeburn@cygnus>
Fri, 10 Mar 1995 22:33:28 +0000 (22:33 +0000)
gas/config/obj-coff.c

index 0fb2d26aba22a6354f7dd94107f07b3053fddc34..1c9f9cd6046f6c595de0ece2a21a3cb8e58ba701 100644 (file)
@@ -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() */