aboutsummaryrefslogtreecommitdiff
path: root/gas/cond.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2011-05-17 16:15:59 +0000
committerNick Clifton <nickc@redhat.com>2011-05-17 16:15:59 +0000
commit9fd07943ffd27fb0aeee0acf20262e45f6716316 (patch)
tree00dfa26c3309599cf179b5629e5eb8350c6d4eb9 /gas/cond.c
parentfe817eb1a32305211d7aba8832cd974b2671b69b (diff)
downloadgdb-9fd07943ffd27fb0aeee0acf20262e45f6716316.zip
gdb-9fd07943ffd27fb0aeee0acf20262e45f6716316.tar.gz
gdb-9fd07943ffd27fb0aeee0acf20262e45f6716316.tar.bz2
* config/tc-m32r.c (md_show_usage): Fix typos in descriptions.
* config/tc-mt.c (md_assemble): Fix typos in warning messages. * cond.c (s_else): Fix typos in error messages. * config/tc-pj.c (md_assemble): Fix typo in error message.
Diffstat (limited to 'gas/cond.c')
-rw-r--r--gas/cond.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gas/cond.c b/gas/cond.c
index bcdc4bf..4b6326f 100644
--- a/gas/cond.c
+++ b/gas/cond.c
@@ -311,10 +311,10 @@ s_elseif (int arg)
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\""));
+ _("here is the previous \".else\""));
as_bad_where (current_cframe->if_file_line.file,
current_cframe->if_file_line.line,
- _("here is the previous \"if\""));
+ _("here is the previous \".if\""));
}
else
{
@@ -414,13 +414,13 @@ s_else (int arg ATTRIBUTE_UNUSED)
}
else if (current_cframe->else_seen)
{
- as_bad (_("duplicate \"else\""));
+ as_bad (_("duplicate \".else\""));
as_bad_where (current_cframe->else_file_line.file,
current_cframe->else_file_line.line,
- _("here is the previous \"else\""));
+ _("here is the previous \".else\""));
as_bad_where (current_cframe->if_file_line.file,
current_cframe->if_file_line.line,
- _("here is the previous \"if\""));
+ _("here is the previous \".if\""));
}
else
{