forked from Imagelibrary/binutils-gdb
Update x86 assembler error messages.
2010-02-25 H.J. Lu <hongjiu.lu@intel.com> * config/tc-i386.c (match_template): Update error messages.
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
|
2010-02-25 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
|
* config/tc-i386.c (match_template): Update error messages.
|
||||||
|
|
||||||
2010-02-25 H.J. Lu <hongjiu.lu@intel.com>
|
2010-02-25 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
* config/tc-i386.c (_i386_insn): Add err_msg.
|
* config/tc-i386.c (_i386_insn): Add err_msg.
|
||||||
|
|||||||
@@ -3815,7 +3815,7 @@ match_template (void)
|
|||||||
continue;
|
continue;
|
||||||
|
|
||||||
/* Check processor support. */
|
/* Check processor support. */
|
||||||
i.err_msg = _("instruction not supported");
|
i.err_msg = _("unsupported");
|
||||||
found_cpu_match = (cpu_flags_match (t)
|
found_cpu_match = (cpu_flags_match (t)
|
||||||
== CPU_FLAGS_PERFECT_MATCH);
|
== CPU_FLAGS_PERFECT_MATCH);
|
||||||
if (!found_cpu_match)
|
if (!found_cpu_match)
|
||||||
@@ -3827,7 +3827,7 @@ match_template (void)
|
|||||||
continue;
|
continue;
|
||||||
|
|
||||||
/* Check AT&T mnemonic. */
|
/* 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)
|
if (intel_mnemonic && t->opcode_modifier.attmnemonic)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user