2001-01-23 Kazu Hirata <kazu@hxi.com>
authorKazu Hirata <kazu@codesourcery.com>
Tue, 23 Jan 2001 22:15:01 +0000 (22:15 +0000)
committerKazu Hirata <kazu@codesourcery.com>
Tue, 23 Jan 2001 22:15:01 +0000 (22:15 +0000)
* as.c: Fix formatting.
* ehopt.c: Likewise.
* messages.c: Likewise.
* stabs.c: Likewise.
* symbols.c: Likewise.

gas/ChangeLog
gas/as.c
gas/ehopt.c
gas/messages.c
gas/stabs.c
gas/symbols.c

index c87acdce38687615654cc3bd78d48cc4b0e48674..9cd3ed0adf7647f7a4c1155eee82dcff79fa6e30 100644 (file)
@@ -1,3 +1,11 @@
+2001-01-23  Kazu Hirata  <kazu@hxi.com>
+
+       * as.c: Fix formatting.
+       * ehopt.c: Likewise.
+       * messages.c: Likewise.
+       * stabs.c: Likewise.
+       * symbols.c: Likewise.
+
 2001-01-23  Ben Elliston  <bje@redhat.com>
 
        * config/tc-m32r.c (m32r_handle_align): Declare type of fragp.
index 6cf324d1d90862b2e01823cb7d7061a7933e04fe..8c7493db2a49215c42f0a8874f8f84d8873bb37a 100644 (file)
--- a/gas/as.c
+++ b/gas/as.c
@@ -886,7 +886,7 @@ main (argc, argv)
   md_end ();
 #endif
 
-  /* If we've been collecting dwarf2 .debug_line info, either for 
+  /* If we've been collecting dwarf2 .debug_line info, either for
      assembly debugging or on behalf of the compiler, emit it now.  */
   dwarf2_finish ();
 
index 67518272d4018d45a856abf95b2b0363c61c7aac..4131436362d87c9af0e5d37386eb8bec45f3dc6f 100644 (file)
@@ -280,7 +280,7 @@ check_eh_frame (exp, pnbytes)
     int saw_advance_loc4;
     int loc4_fix;
   };
-  
+
   static struct frame_data eh_frame_data;
   static struct frame_data debug_frame_data;
   struct frame_data *d;
index 1abfb3ac3b6f5b2ff212a2428a0b43581980fce7..e342673e3724ae71c02d5c2db729af750bd639e6 100644 (file)
@@ -327,7 +327,7 @@ as_bad_internal (file, line, buffer)
    file(s).  Please us when there is no recovery, but we want to
    continue processing but not produce an object file.
    Please explain in string (which may have '\n's) what recovery was
-   done. */
+   done.  */
 
 #ifdef USE_STDARG
 void
index 71090d85d12d02ffc64b8dfa6bbf8d2c018ac5e9..faf3a9c12cc069f9479abc1fa00e48e0fad28346 100644 (file)
@@ -507,11 +507,11 @@ generate_asm_file (type, file)
   char *tmp = file;
   char *endp = file + strlen (file);
   char *bufp = buf;
-  
+
   if (last_file != NULL
       && strcmp (last_file, file) == 0)
     return;
-  
+
   /* Rather than try to do this in some efficient fashion, we just
      generate a string and then parse it again.  That lets us use the
      existing stabs hook, which expect to see a string, rather than
@@ -525,19 +525,19 @@ generate_asm_file (type, file)
      doubled up backslashes), the symbol name, and the other characters
      that make up a stabs file directive.  */
   bufp = buf = xmalloc (2 * strlen (file) + strlen (sym) + 12);
-  
+
   *bufp++ = '"';
 
   while (tmp < endp)
     {
       char *bslash = strchr (tmp, '\\');
       int len = (bslash ? (bslash - tmp + 1) : strlen (tmp));
-      
+
       /* Double all backslashes, since demand_copy_C_string (used by
         s_stab to extract the part in quotes) will try to replace them as
         escape sequences.  backslash may appear in a filespec.  */
       strncpy (bufp, tmp, len);
-      
+
       tmp += len;
       bufp += len;
 
@@ -554,7 +554,7 @@ generate_asm_file (type, file)
   if (last_file != NULL)
     free (last_file);
   last_file = xstrdup (file);
-  
+
   free (buf);
 
   input_line_pointer = hold;
index a9bd222ea414338c4a2144fcdd7c57e97857d64b..fba40cffa5a531411349bdb63140895ac0dbffab 100644 (file)
@@ -1532,12 +1532,12 @@ decode_local_label_name (s)
   char *type;
   const char *message_format = _("\"%d\" (instance number %d of a %s label)");
   int index = 0;
-  
+
 #ifdef LOCAL_LABEL_PREFIX
   if (s[index] == LOCAL_LABEL_PREFIX)
     ++index;
 #endif
-  
+
   if (s[index] != 'L')
     return s;