diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2010-02-25 21:47:27 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2010-02-25 21:47:27 +0000 |
commit | a6c560506ba9f159abc701f63e24f320f78345c8 (patch) | |
tree | b15bb7d7fb362cce80fabf7283da95a0939f2cf6 /gas/config | |
parent | 78664fa36abb48b1c21151dfb95143c39310fbbe (diff) | |
download | ppe42-binutils-a6c560506ba9f159abc701f63e24f320f78345c8.tar.gz ppe42-binutils-a6c560506ba9f159abc701f63e24f320f78345c8.zip |
Update x86 assembler error messages.
2010-02-25 H.J. Lu <hongjiu.lu@intel.com>
* config/tc-i386.c (match_template): Update error messages.
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-i386.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index 7b71bbc813..8ce40a7df7 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; |