aboutsummaryrefslogtreecommitdiff
path: root/opcodes
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2007-07-16 19:16:44 +0000
committerH.J. Lu <hjl.tools@gmail.com>2007-07-16 19:16:44 +0000
commit1405105681b49399baa02f6d88173ff0ec1edab3 (patch)
treefb490ee621b88c49da49f2ce8fe1bdf74c54d171 /opcodes
parent2e024c20ebf22ba56d2b25498076c60cf957132e (diff)
downloadfsf-binutils-gdb-1405105681b49399baa02f6d88173ff0ec1edab3.zip
fsf-binutils-gdb-1405105681b49399baa02f6d88173ff0ec1edab3.tar.gz
fsf-binutils-gdb-1405105681b49399baa02f6d88173ff0ec1edab3.tar.bz2
gas/testsuite/
2007-07-16 H.J. Lu <hongjiu.lu@intel.com> * gas/i386/simd.s: Add tests for punpcklbw, punpckldq, punpcklwd and punpcklqdq. * gas/i386/x86-64-simd.s: Likewise. * gas/i386/simd-intel.d: Updated. * gas/i386/simd.d: Likewise. * gas/i386/x86-64-simd-intel.d: Likewise. * gas/i386/x86-64-simd.d: Likewise. opcodes/ 2007-07-16 H.J. Lu <hongjiu.lu@intel.com> * i386-dis.c (EMq): Removed. (EMx): New. (prefix_user_table): Replace EMq with EMx.
Diffstat (limited to 'opcodes')
-rw-r--r--opcodes/ChangeLog6
-rw-r--r--opcodes/i386-dis.c8
2 files changed, 10 insertions, 4 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog
index 35de03e..8826105 100644
--- a/opcodes/ChangeLog
+++ b/opcodes/ChangeLog
@@ -1,3 +1,9 @@
+2007-07-16 H.J. Lu <hongjiu.lu@intel.com>
+
+ * i386-dis.c (EMq): Removed.
+ (EMx): New.
+ (prefix_user_table): Replace EMq with EMx.
+
2007-07-16 Nick Clifton <nickc@redhat.com>
* po/nl.po: Updated translation.
diff --git a/opcodes/i386-dis.c b/opcodes/i386-dis.c
index 3d654012..29fec0f 100644
--- a/opcodes/i386-dis.c
+++ b/opcodes/i386-dis.c
@@ -309,7 +309,7 @@ fetch_data (struct disassemble_info *info, bfd_byte *addr)
#define XM { OP_XMM, 0 }
#define EM { OP_EM, v_mode }
#define EMd { OP_EM, d_mode }
-#define EMq { OP_EM, q_mode }
+#define EMx { OP_EM, x_mode }
#define EXd { OP_EX, d_mode }
#define EXq { OP_EX, q_mode }
#define EXx { OP_EX, x_mode }
@@ -2568,7 +2568,7 @@ static const struct dis386 prefix_user_table[][4] = {
{
{ "punpcklbw",{ MX, EMd } },
{ "(bad)", { XX } },
- { "punpcklbw",{ MX, EMq } },
+ { "punpcklbw",{ MX, EMx } },
{ "(bad)", { XX } },
},
@@ -2576,7 +2576,7 @@ static const struct dis386 prefix_user_table[][4] = {
{
{ "punpcklwd",{ MX, EMd } },
{ "(bad)", { XX } },
- { "punpcklwd",{ MX, EMq } },
+ { "punpcklwd",{ MX, EMx } },
{ "(bad)", { XX } },
},
@@ -2584,7 +2584,7 @@ static const struct dis386 prefix_user_table[][4] = {
{
{ "punpckldq",{ MX, EMd } },
{ "(bad)", { XX } },
- { "punpckldq",{ MX, EMq } },
+ { "punpckldq",{ MX, EMx } },
{ "(bad)", { XX } },
},
};