mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 14:49:38 +08:00
* 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.
This commit is contained in:
10
gas/cond.c
10
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
|
||||
{
|
||||
|
Reference in New Issue
Block a user