Replace oprand_size_mismatch with operand_size_mismatch.
authorH.J. Lu <hjl.tools@gmail.com>
Mon, 22 Mar 2010 03:29:47 +0000 (03:29 +0000)
committerH.J. Lu <hjl.tools@gmail.com>
Mon, 22 Mar 2010 03:29:47 +0000 (03:29 +0000)
2010-03-21  H.J. Lu  <hongjiu.lu@intel.com>

* config/tc-i386.c (i386_error): Replace oprand_size_mismatch
with operand_size_mismatch.
(operand_size_match): Updated.
(match_template): Likewise.

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

index dcc44a5ecb6af71396f1908fbc54f0ee578845a4..d6bffc19099f3d8d3bb53a432b8cc5e2f210435f 100644 (file)
@@ -1,3 +1,10 @@
+2010-03-21  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * config/tc-i386.c (i386_error): Replace oprand_size_mismatch
+       with operand_size_mismatch.
+       (operand_size_match): Updated.
+       (match_template): Likewise.
+
 2010-03-21  H.J. Lu  <hongjiu.lu@intel.com>
 
        * config/tc-i386.c (i386_error): New.
index 6def7691cbafbc60168a53229be6260c3b05e392..c4603a731777a90af4e90a144fa2bf498851fb33 100644 (file)
@@ -206,7 +206,7 @@ union i386_op
 
 enum i386_error
   {
-    oprand_size_mismatch,
+    operand_size_mismatch,
     operand_type_mismatch,
     register_type_mismatch,
     number_of_operands_mismatch,
@@ -1579,7 +1579,7 @@ operand_size_match (const insn_template *t)
   else if (!t->opcode_modifier.d && !t->opcode_modifier.floatd)
     {
 mismatch:
-      i.error = oprand_size_mismatch;
+      i.error = operand_size_mismatch;
       return 0;
     }
 
@@ -4109,7 +4109,7 @@ check_reverse:
        {
        default:
          abort ();
-       case oprand_size_mismatch:
+       case operand_size_mismatch:
          err_msg = _("operand size mismatch");
          break;
        case operand_type_mismatch:
This page took 0.113669 seconds and 4 git commands to generate.