aboutsummaryrefslogtreecommitdiff
path: root/opcodes
diff options
context:
space:
mode:
authorJan Beulich <jbeulich@suse.com>2019-07-01 08:22:37 +0200
committerJan Beulich <jbeulich@suse.com>2019-07-01 08:22:37 +0200
commit219920a7c49069e30a7be2b166099bf795837a6d (patch)
tree1fe4bfe445b4a40933c72132645c91065d4055c0 /opcodes
parentc444fad6da089b5b94ae7ea2aabce0521695a8d3 (diff)
downloadgdb-219920a7c49069e30a7be2b166099bf795837a6d.zip
gdb-219920a7c49069e30a7be2b166099bf795837a6d.tar.gz
gdb-219920a7c49069e30a7be2b166099bf795837a6d.tar.bz2
x86: drop a few dead macros
Diffstat (limited to 'opcodes')
-rw-r--r--opcodes/ChangeLog5
-rw-r--r--opcodes/i386-dis.c5
2 files changed, 5 insertions, 5 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog
index a6eb697..965f7a7 100644
--- a/opcodes/ChangeLog
+++ b/opcodes/ChangeLog
@@ -1,3 +1,8 @@
+2019-07-01 Jan Beulich <jbeulich@suse.com>
+
+ * i386-dis.c (EXdVex, EXdVexS, EXqVex, EXqVexS, XMVex):
+ Delete.
+
2019-06-27 H.J. Lu <hongjiu.lu@intel.com>
PR binutils/24719
diff --git a/opcodes/i386-dis.c b/opcodes/i386-dis.c
index de99462..5b47b4c 100644
--- a/opcodes/i386-dis.c
+++ b/opcodes/i386-dis.c
@@ -425,17 +425,12 @@ fetch_data (struct disassemble_info *info, bfd_byte *addr)
#define Vex128 { OP_VEX, vex128_mode }
#define Vex256 { OP_VEX, vex256_mode }
#define VexGdq { OP_VEX, dq_mode }
-#define EXdVex { OP_EX_Vex, d_mode }
-#define EXdVexS { OP_EX_Vex, d_swap_mode }
#define EXdVexScalarS { OP_EX_Vex, d_scalar_swap_mode }
-#define EXqVex { OP_EX_Vex, q_mode }
-#define EXqVexS { OP_EX_Vex, q_swap_mode }
#define EXqVexScalarS { OP_EX_Vex, q_scalar_swap_mode }
#define EXVexW { OP_EX_VexW, x_mode }
#define EXdVexW { OP_EX_VexW, d_mode }
#define EXqVexW { OP_EX_VexW, q_mode }
#define EXVexImmW { OP_EX_VexImmW, x_mode }
-#define XMVex { OP_XMM_Vex, 0 }
#define XMVexScalar { OP_XMM_Vex, scalar_mode }
#define XMVexW { OP_XMM_VexW, 0 }
#define XMVexI4 { OP_REG_VexI4, x_mode }