diff options
-rw-r--r-- | opcodes/ChangeLog | 7 | ||||
-rw-r--r-- | opcodes/i386-dis.c | 6 |
2 files changed, 10 insertions, 3 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 8e73c91..3fcd360 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,10 @@ +2009-12-14 H.J. Lu <hongjiu.lu@intel.com> + + * i386-dis.c (MOD_VEX_51): Renamed to ... + (MOD_VEX_50): This. + (vex_table): Updated. + (mod_table): Likewise. + 2009-12-14 Nick Clifton <nickc@redhat.com> PR binutils/10924 diff --git a/opcodes/i386-dis.c b/opcodes/i386-dis.c index e646f25..28745a3 100644 --- a/opcodes/i386-dis.c +++ b/opcodes/i386-dis.c @@ -639,7 +639,7 @@ enum MOD_VEX_16_PREFIX_0, MOD_VEX_17, MOD_VEX_2B, - MOD_VEX_51, + MOD_VEX_50, MOD_VEX_71_REG_2, MOD_VEX_71_REG_4, MOD_VEX_71_REG_6, @@ -7359,7 +7359,7 @@ static const struct dis386 vex_table[][256] = { { "(bad)", { XX } }, { "(bad)", { XX } }, /* 50 */ - { MOD_TABLE (MOD_VEX_51) }, + { MOD_TABLE (MOD_VEX_50) }, { PREFIX_TABLE (PREFIX_VEX_51) }, { PREFIX_TABLE (PREFIX_VEX_52) }, { PREFIX_TABLE (PREFIX_VEX_53) }, @@ -9667,7 +9667,7 @@ static const struct dis386 mod_table[][2] = { { "(bad)", { XX } }, }, { - /* MOD_VEX_51 */ + /* MOD_VEX_50 */ { "(bad)", { XX } }, { "vmovmskpX", { Gdq, XS } }, }, |