mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-29 04:53:56 +08:00
2009-02-23 H.J. Lu <hongjiu.lu@intel.com>
* config/tc-i386.c (type_names): Add OPERAND_TYPE_REGYMM. (pt): Replace UINTS_ALL_ZERO with operand_type_all_zero.
This commit is contained in:
parent
c1b80a2afc
commit
0349dc08b2
@ -1,3 +1,8 @@
|
||||
2009-02-23 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* config/tc-i386.c (type_names): Add OPERAND_TYPE_REGYMM.
|
||||
(pt): Replace UINTS_ALL_ZERO with operand_type_all_zero.
|
||||
|
||||
2009-02-23 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* config/tc-i386.c (type_names): Remove OPERAND_TYPE_VEX_IMM4.
|
||||
|
@ -2328,6 +2328,7 @@ const type_names[] =
|
||||
{ OPERAND_TYPE_JUMPABSOLUTE, "Jump Absolute" },
|
||||
{ OPERAND_TYPE_REGMMX, "rMMX" },
|
||||
{ OPERAND_TYPE_REGXMM, "rXMM" },
|
||||
{ OPERAND_TYPE_REGYMM, "rYMM" },
|
||||
{ OPERAND_TYPE_ESSEG, "es" },
|
||||
};
|
||||
|
||||
@ -2340,7 +2341,7 @@ pt (i386_operand_type t)
|
||||
for (j = 0; j < ARRAY_SIZE (type_names); j++)
|
||||
{
|
||||
a = operand_type_and (t, type_names[j].mask);
|
||||
if (!UINTS_ALL_ZERO (a))
|
||||
if (!operand_type_all_zero (&a))
|
||||
fprintf (stdout, "%s, ", type_names[j].name);
|
||||
}
|
||||
fflush (stdout);
|
||||
|
Loading…
Reference in New Issue
Block a user