x86: drop ymmxmm_mode

This enumerator is not used by any table entry.
This commit is contained in:
Jan Beulich
2022-01-14 10:56:28 +01:00
parent e6cfa893f4
commit fd47eb1a30

View File

@ -628,8 +628,6 @@ enum
ymm_mode, ymm_mode,
/* quad word, ymmword or zmmword memory operand. */ /* quad word, ymmword or zmmword memory operand. */
ymmq_mode, ymmq_mode,
/* 32-byte YMM or 16-byte word operand */
ymmxmm_mode,
/* TMM operand */ /* TMM operand */
tmm_mode, tmm_mode,
/* d_mode in 32bit, q_mode in 64bit mode. */ /* d_mode in 32bit, q_mode in 64bit mode. */
@ -11246,20 +11244,6 @@ intel_operand_size (instr_info *ins, int bytemode, int sizeflag)
abort (); abort ();
} }
break; break;
case ymmxmm_mode:
if (!ins->need_vex)
abort ();
switch (ins->vex.length)
{
case 128:
case 256:
oappend (ins, "XMMWORD PTR ");
break;
default:
abort ();
}
break;
case o_mode: case o_mode:
oappend (ins, "OWORD PTR "); oappend (ins, "OWORD PTR ");
break; break;