Update x86 assembler error messages.
authorH.J. Lu <hjl.tools@gmail.com>
Thu, 25 Feb 2010 21:47:27 +0000 (21:47 +0000)
committerH.J. Lu <hjl.tools@gmail.com>
Thu, 25 Feb 2010 21:47:27 +0000 (21:47 +0000)
2010-02-25  H.J. Lu  <hongjiu.lu@intel.com>

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

gas/ChangeLog
gas/config/tc-i386.c

index fe4775fa390806578896d38911ebd5f759fae809..9a5b9e223cfd85dbd91b6a9db4995e8817de836f 100644 (file)
@@ -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>
 
        * config/tc-i386.c (_i386_insn): Add err_msg.
index 7b71bbc81340fd994fa626c352e8fe3f884a90b4..8ce40a7df7bb3751f938e2a237effd4ba5fc3e98 100644 (file)
@@ -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;