diff options
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 5 | ||||
-rw-r--r-- | opcodes/i386-dis-evex.h | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index db54a80..42d8431 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +2014-07-08 Ilya Tocar <ilya.tocar@intel.com> + + * i386-dis-evex.h (EVEX_W_0F10_P_1_M_1): Fix vmovss. + (EVEX_W_0F10_P_3_M_1): Fix vmovsd. + 2014-07-04 Alan Modra <amodra@gmail.com> * configure.ac: Rename from configure.in. diff --git a/opcodes/i386-dis-evex.h b/opcodes/i386-dis-evex.h index 0d17846..524e7c5 100644 --- a/opcodes/i386-dis-evex.h +++ b/opcodes/i386-dis-evex.h @@ -2213,7 +2213,7 @@ static const struct dis386 evex_table[][256] = { }, /* EVEX_W_0F10_P_1_M_1 */ { - { "vmovss", { XMScalar, VexScalar, EXx } }, + { "vmovss", { XMScalar, VexScalar, EXxmm_md } }, }, /* EVEX_W_0F10_P_2 */ { @@ -2228,7 +2228,7 @@ static const struct dis386 evex_table[][256] = { /* EVEX_W_0F10_P_3_M_1 */ { { Bad_Opcode }, - { "vmovsd", { XMScalar, VexScalar, EXx } }, + { "vmovsd", { XMScalar, VexScalar, EXxmm_mq } }, }, /* EVEX_W_0F11_P_0 */ { |