2001-01-23 Kazu Hirata <kazu@hxi.com>
* as.c: Fix formatting. * ehopt.c: Likewise. * messages.c: Likewise. * stabs.c: Likewise. * symbols.c: Likewise.
This commit is contained in:
parent
0007625f8f
commit
43ad3147a9
6 changed files with 19 additions and 11 deletions
|
@ -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.
|
||||
|
|
2
gas/as.c
2
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 ();
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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
|
||||
|
|
12
gas/stabs.c
12
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;
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue