mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-07-03 03:07:26 +08:00
Replace oprand_size_mismatch with operand_size_mismatch.
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.
This commit is contained in:
@ -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>
|
2010-03-21 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
* config/tc-i386.c (i386_error): New.
|
* config/tc-i386.c (i386_error): New.
|
||||||
|
@ -206,7 +206,7 @@ union i386_op
|
|||||||
|
|
||||||
enum i386_error
|
enum i386_error
|
||||||
{
|
{
|
||||||
oprand_size_mismatch,
|
operand_size_mismatch,
|
||||||
operand_type_mismatch,
|
operand_type_mismatch,
|
||||||
register_type_mismatch,
|
register_type_mismatch,
|
||||||
number_of_operands_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)
|
else if (!t->opcode_modifier.d && !t->opcode_modifier.floatd)
|
||||||
{
|
{
|
||||||
mismatch:
|
mismatch:
|
||||||
i.error = oprand_size_mismatch;
|
i.error = operand_size_mismatch;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -4109,7 +4109,7 @@ check_reverse:
|
|||||||
{
|
{
|
||||||
default:
|
default:
|
||||||
abort ();
|
abort ();
|
||||||
case oprand_size_mismatch:
|
case operand_size_mismatch:
|
||||||
err_msg = _("operand size mismatch");
|
err_msg = _("operand size mismatch");
|
||||||
break;
|
break;
|
||||||
case operand_type_mismatch:
|
case operand_type_mismatch:
|
||||||
|
Reference in New Issue
Block a user