summaryrefslogtreecommitdiff
path: root/gas/cond.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2001-08-01 01:44:25 +0000
committerAlan Modra <amodra@bigpond.net.au>2001-08-01 01:44:25 +0000
commitd01cfc3f35bedaaa7f00f5c25653f51d01dacf84 (patch)
tree9cf3bae5517a4317ae92910bd93714715ac3f6a1 /gas/cond.c
parent2f6e662b3ca0e6b75e7e01ef9a68590acf0ec797 (diff)
downloadbinutils-redhat-d01cfc3f35bedaaa7f00f5c25653f51d01dacf84.tar.gz
* 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.
Diffstat (limited to 'gas/cond.c')
-rw-r--r--gas/cond.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gas/cond.c b/gas/cond.c
index 6c6e8adfa3..73304cbcbd 100644
--- a/gas/cond.c
+++ b/gas/cond.c
@@ -257,11 +257,11 @@ s_elseif (arg)
{
if (current_cframe == NULL)
{
- as_bad (_("\".elseif\" without matching \".if\" - ignored"));
+ as_bad (_("\".elseif\" without matching \".if\""));
}
else if (current_cframe->else_seen)
{
- as_bad (_("\".elseif\" after \".else\" - ignored"));
+ as_bad (_("\".elseif\" after \".else\""));
as_bad_where (current_cframe->else_file_line.file,
current_cframe->else_file_line.line,
_("here is the previous \"else\""));
@@ -365,11 +365,11 @@ s_else (arg)
{
if (current_cframe == NULL)
{
- as_bad (_(".else without matching .if - ignored"));
+ as_bad (_("\".else\" without matching \".if\""));
}
else if (current_cframe->else_seen)
{
- as_bad (_("duplicate \"else\" - ignored"));
+ as_bad (_("duplicate \"else\""));
as_bad_where (current_cframe->else_file_line.file,
current_cframe->else_file_line.line,
_("here is the previous \"else\""));