aboutsummaryrefslogtreecommitdiff
path: root/opcodes
diff options
context:
space:
mode:
authorJan Beulich <jbeulich@suse.com>2022-01-14 10:56:28 +0100
committerJan Beulich <jbeulich@suse.com>2022-01-14 10:56:28 +0100
commitfd47eb1a302753ddf8e37f5a4918c889cb8c929b (patch)
treed596ccdd508064c2fa8b970acd627d670c160ad0 /opcodes
parente6cfa893f41c769f003f0d0c2d250616321bcc5a (diff)
downloadbinutils-fd47eb1a302753ddf8e37f5a4918c889cb8c929b.zip
binutils-fd47eb1a302753ddf8e37f5a4918c889cb8c929b.tar.gz
binutils-fd47eb1a302753ddf8e37f5a4918c889cb8c929b.tar.bz2
x86: drop ymmxmm_mode
This enumerator is not used by any table entry.
Diffstat (limited to 'opcodes')
-rw-r--r--opcodes/i386-dis.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/opcodes/i386-dis.c b/opcodes/i386-dis.c
index 1c31f9e..ddb4b72 100644
--- a/opcodes/i386-dis.c
+++ b/opcodes/i386-dis.c
@@ -628,8 +628,6 @@ enum
ymm_mode,
/* quad word, ymmword or zmmword memory operand. */
ymmq_mode,
- /* 32-byte YMM or 16-byte word operand */
- ymmxmm_mode,
/* TMM operand */
tmm_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 ();
}
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:
oappend (ins, "OWORD PTR ");
break;