diff options
-rw-r--r-- | opcodes/ChangeLog | 6 | ||||
-rw-r--r-- | opcodes/i386-dis.c | 8 |
2 files changed, 13 insertions, 1 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 937a5c0..5c4ca4a 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,5 +1,11 @@ 2009-12-15 H.J. Lu <hongjiu.lu@intel.com> + * i386-dis.c (VEX_W_3818_P_2_M_0): New. + (vex_w_table): Add VEX_W_3818_P_2_M_0. + (mod_table): Use VEX_W_3818_P_2_M_0. + +2009-12-15 H.J. Lu <hongjiu.lu@intel.com> + * i386-dis.c (vex_w_table): Reformat. 2009-12-15 H.J. Lu <hongjiu.lu@intel.com> diff --git a/opcodes/i386-dis.c b/opcodes/i386-dis.c index 93d1f56..05504de 100644 --- a/opcodes/i386-dis.c +++ b/opcodes/i386-dis.c @@ -1485,6 +1485,7 @@ enum VEX_W_380E_P_2, VEX_W_380F_P_2, VEX_W_3817_P_2, + VEX_W_3818_P_2_M_0, VEX_W_3819_P_2_M_0, VEX_W_381A_P_2_M_0, VEX_W_381C_P_2, @@ -10537,6 +10538,11 @@ static const struct dis386 vex_w_table[][2] = { { "(bad)", { XX } }, }, { + /* VEX_W_3818_P_2_M_0 */ + { "vbroadcastss", { XM, Md } }, + { "(bad)", { XX } }, + }, + { /* VEX_W_3819_P_2_M_0 */ { "vbroadcastsd", { XM, Mq } }, { "(bad)", { XX } }, @@ -11271,7 +11277,7 @@ static const struct dis386 mod_table[][2] = { }, { /* MOD_VEX_3818_PREFIX_2 */ - { "vbroadcastss", { XM, Md } }, + { VEX_W_TABLE (VEX_W_3818_P_2_M_0) }, { "(bad)", { XX } }, }, { |