This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

PATCH: Update x86 assembler error messages


Hi,

I cheked in this patch to update x86 assembler error messages.


H.J.
---
2010-02-25  H.J. Lu  <hongjiu.lu@intel.com>

	* config/tc-i386.c (match_template): Update error messages.

Index: config/tc-i386.c
===================================================================
RCS file: /cvs/src/src/gas/config/tc-i386.c,v
retrieving revision 1.427
diff -u -p -r1.427 tc-i386.c
--- config/tc-i386.c	25 Feb 2010 17:59:52 -0000	1.427
+++ config/tc-i386.c	25 Feb 2010 21:45:54 -0000
@@ -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;
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]