summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gas/ChangeLog8
-rw-r--r--gas/as.c2
-rw-r--r--gas/ehopt.c2
-rw-r--r--gas/messages.c2
-rw-r--r--gas/stabs.c12
-rw-r--r--gas/symbols.c4
6 files changed, 19 insertions, 11 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index c87acdce38..9cd3ed0adf 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -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.
diff --git a/gas/as.c b/gas/as.c
index 6cf324d1d9..8c7493db2a 100644
--- 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 ();
diff --git a/gas/ehopt.c b/gas/ehopt.c
index 67518272d4..4131436362 100644
--- a/gas/ehopt.c
+++ b/gas/ehopt.c
@@ -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;
diff --git a/gas/messages.c b/gas/messages.c
index 1abfb3ac3b..e342673e37 100644
--- a/gas/messages.c
+++ b/gas/messages.c
@@ -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
diff --git a/gas/stabs.c b/gas/stabs.c
index 71090d85d1..faf3a9c12c 100644
--- a/gas/stabs.c
+++ b/gas/stabs.c
@@ -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;
diff --git a/gas/symbols.c b/gas/symbols.c
index a9bd222ea4..fba40cffa5 100644
--- a/gas/symbols.c
+++ b/gas/symbols.c
@@ -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;