aboutsummaryrefslogtreecommitdiff
path: root/gas/config
diff options
context:
space:
mode:
authorMaciej W. Rozycki <macro@linux-mips.org>2011-11-16 12:34:34 +0000
committerMaciej W. Rozycki <macro@linux-mips.org>2011-11-16 12:34:34 +0000
commit7bd942df4ab6dddeb0318d2621bd8db6f8ff65cb (patch)
treed905a1dcff13b2ae166e95006ac3c1d62783a839 /gas/config
parent9ddc84cc261c3694ef52907c739af694af48d02a (diff)
downloadgdb-7bd942df4ab6dddeb0318d2621bd8db6f8ff65cb.zip
gdb-7bd942df4ab6dddeb0318d2621bd8db6f8ff65cb.tar.gz
gdb-7bd942df4ab6dddeb0318d2621bd8db6f8ff65cb.tar.bz2
gas/
* config/tc-mips.c (macro): Fix unsupported opcode message capitalization. (mips_ip, mips16_ip): Likewise. gas/testsuite/ * gas/mips/mips-double-float-flag.l: Adjust according to unsupported opcode message capitalization fix. * gas/mips/mips-hard-float-flag.l: Likewise. * gas/mips/mips-macro-ill-nofp.l: Likewise. * gas/mips/mips-macro-ill-sfp.l: Likewise. * gas/mips/mips1-fp.l: Likewise. * gas/mips/mips16e-64.l: Likewise. * gas/mips/mips32-sf32.l: Likewise. * gas/mips/mips32r2-fp32.l: Likewise. * gas/mips/mips4-branch-likely.l: Likewise. * gas/mips/mips4-fp.l: Likewise. * gas/mips/octeon-ill.l: Likewise.
Diffstat (limited to 'gas/config')
-rw-r--r--gas/config/tc-mips.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c
index 6d32a5e..34d2df7 100644
--- a/gas/config/tc-mips.c
+++ b/gas/config/tc-mips.c
@@ -9151,7 +9151,7 @@ macro (struct mips_cl_insn *ip)
if (NO_ISA_COP (mips_opts.arch)
&& (ip->insn_mo->pinfo2 & INSN2_M_FP_S) == 0)
{
- as_bad (_("opcode not supported on this processor: %s"),
+ as_bad (_("Opcode not supported on this processor: %s"),
mips_cpu_info_from_arch (mips_opts.arch)->name);
break;
}
@@ -10700,7 +10700,7 @@ mips_ip (char *str, struct mips_cl_insn *ip)
return;
if (!ok)
- sprintf (buf, _("opcode not supported on this processor: %s (%s)"),
+ sprintf (buf, _("Opcode not supported on this processor: %s (%s)"),
mips_cpu_info_from_arch (mips_opts.arch)->name,
mips_cpu_info_from_isa (mips_opts.isa)->name);
else
@@ -13229,7 +13229,7 @@ mips16_ip (char *str, struct mips_cl_insn *ip)
{
static char buf[100];
sprintf (buf,
- _("opcode not supported on this processor: %s (%s)"),
+ _("Opcode not supported on this processor: %s (%s)"),
mips_cpu_info_from_arch (mips_opts.arch)->name,
mips_cpu_info_from_isa (mips_opts.isa)->name);
insn_error = buf;