diff options
author | Cui,Lili <lili.cui@intel.com> | 2020-06-16 07:11:31 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2020-06-17 07:01:06 -0700 |
commit | 6fde587ff78a54b9e3bd70259de60cc5d7d8ced7 (patch) | |
tree | 483669645546b21adb3567589c34495a2dc8f2b5 | |
parent | 081e778cb855581fe63a9b26aa582900da5d1a8b (diff) | |
download | gdb-6fde587ff78a54b9e3bd70259de60cc5d7d8ced7.zip gdb-6fde587ff78a54b9e3bd70259de60cc5d7d8ced7.tar.gz gdb-6fde587ff78a54b9e3bd70259de60cc5d7d8ced7.tar.bz2 |
x86: Delete incorrect vmgexit entry in prefix_table
* i386-dis.c (prefix_table): Delete the incorrect vmgexit.
-rw-r--r-- | opcodes/ChangeLog | 4 | ||||
-rw-r--r-- | opcodes/i386-dis.c | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index a6adf71..f604f6e 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,7 @@ +2020-06-17 Lili Cui <lili.cui@intel.com> + + * i386-dis.c (prefix_table): Delete the incorrect vmgexit. + 2020-06-14 H.J. Lu <hongjiu.lu@intel.com> PR gas/26115 diff --git a/opcodes/i386-dis.c b/opcodes/i386-dis.c index 441866d..6ac1d74 100644 --- a/opcodes/i386-dis.c +++ b/opcodes/i386-dis.c @@ -3576,8 +3576,6 @@ static const struct dis386 prefix_table[][4] = { { { "vmmcall", { Skip_MODRM }, 0 }, { "vmgexit", { Skip_MODRM }, 0 }, - { Bad_Opcode }, - { "vmgexit", { Skip_MODRM }, 0 }, }, /* PREFIX_0F01_REG_5_MOD_0 */ |