diff options
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/config/tc-i386.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index fe4775f..9a5b9e2 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,9 @@ 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> + * config/tc-i386.c (_i386_insn): Add err_msg. (operand_size_match): Set err_msg on failure. (operand_type_match): Likewise. diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index 7b71bbc..8ce40a7 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; |