From: H.J. Lu Date: Thu, 25 Feb 2010 21:47:27 +0000 (+0000) Subject: Update x86 assembler error messages. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a6c560506ba9f159abc701f63e24f320f78345c8;p=binutils-gdb.git Update x86 assembler error messages. 2010-02-25 H.J. Lu * config/tc-i386.c (match_template): Update error messages. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index fe4775fa390..9a5b9e223cf 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2010-02-25 H.J. Lu + + * config/tc-i386.c (match_template): Update error messages. + 2010-02-25 H.J. Lu * config/tc-i386.c (_i386_insn): Add err_msg. diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index 7b71bbc8134..8ce40a7df7b 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -3815,7 +3815,7 @@ match_template (void) continue; /* Check processor support. */ - i.err_msg = _("instruction not supported"); + i.err_msg = _("unsupported"); found_cpu_match = (cpu_flags_match (t) == CPU_FLAGS_PERFECT_MATCH); if (!found_cpu_match) @@ -3827,7 +3827,7 @@ match_template (void) continue; /* Check AT&T mnemonic. */ - i.err_msg = _("not supported with Intel mnemonic"); + i.err_msg = _("unsupported with Intel mnemonic"); if (intel_mnemonic && t->opcode_modifier.attmnemonic) continue;