From 43ad3147a9b5ee39b23c6291e5c805e16890db77 Mon Sep 17 00:00:00 2001 From: Kazu Hirata Date: Tue, 23 Jan 2001 22:15:01 +0000 Subject: [PATCH] 2001-01-23 Kazu Hirata * as.c: Fix formatting. * ehopt.c: Likewise. * messages.c: Likewise. * stabs.c: Likewise. * symbols.c: Likewise. --- gas/ChangeLog | 8 ++++++++ gas/as.c | 2 +- gas/ehopt.c | 2 +- gas/messages.c | 2 +- gas/stabs.c | 12 ++++++------ gas/symbols.c | 4 ++-- 6 files changed, 19 insertions(+), 11 deletions(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index c87acdce386..9cd3ed0adf7 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,11 @@ +2001-01-23 Kazu Hirata + + * as.c: Fix formatting. + * ehopt.c: Likewise. + * messages.c: Likewise. + * stabs.c: Likewise. + * symbols.c: Likewise. + 2001-01-23 Ben Elliston * config/tc-m32r.c (m32r_handle_align): Declare type of fragp. diff --git a/gas/as.c b/gas/as.c index 6cf324d1d90..8c7493db2a4 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 67518272d40..4131436362d 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 1abfb3ac3b6..e342673e372 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 71090d85d12..faf3a9c12cc 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 a9bd222ea41..fba40cffa5a 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; -- 2.39.2