mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 14:49:38 +08:00
* read.c: Standardize error/warning messages - don't capitalise, no
final period or newline, don't say "ignored" or "zero assumed" for as_bad messages. In some cases, change the wording to that used elsewhere for similar messages. * app.c, as.c, atof-generic.c, cgen.c, cond.c, depend.c, dwarf2dbg.c, ecoff.c, expr.c, frags.c, input-file.c, input-scrub.c, listing.c, output-file.c, stabs.c, subsegs.c, symbols.c, write.c: Likewise. * ecoff.c (ecoff_directive_end): Test for missing name by comparing input line pointers rather than reading string. (ecoff_directive_ent): Likewise. * read.c (s_set): Likewise. (s_align): Report a warning rather than an error for alignment too large. (s_comm): Check for missing symbol name. (s_lcomm_internal): Likewise. (s_lsym): Likewise. (s_globl): Use is_end_of_line instead of looking for '\n'. (s_lcomm_internal): Likewise. (ignore_rest_of_line): Report a warning rather than an error.
This commit is contained in:
@ -84,7 +84,7 @@ frag_grow (nchars)
|
||||
frchain_now->frch_obstack.chunk_size = oldc;
|
||||
}
|
||||
if (obstack_room (&frchain_now->frch_obstack) < nchars)
|
||||
as_fatal (_("Can't extend frag %d. chars"), nchars);
|
||||
as_fatal (_("can't extend frag %u chars"), nchars);
|
||||
}
|
||||
|
||||
/* Call this to close off a completed frag, and start up a new (empty)
|
||||
|
Reference in New Issue
Block a user