mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-21 02:24:17 +08:00
x86-64: correct mis-named X86_64_0D enumerator
This is for major opcode 0E, so name it accordingly.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2020-03-13 Jan Beulich <jbeulich@suse.com>
|
||||||
|
|
||||||
|
* i386-dis.c (X86_64_0D): Rename to ...
|
||||||
|
(X86_64_0E): ... this.
|
||||||
|
|
||||||
2020-03-09 H.J. Lu <hongjiu.lu@intel.com>
|
2020-03-09 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
* Makefile.am ($(srcdir)/i386-init.h): Also pass -P to $(CPP).
|
* Makefile.am ($(srcdir)/i386-init.h): Also pass -P to $(CPP).
|
||||||
|
@ -1741,7 +1741,7 @@ enum
|
|||||||
{
|
{
|
||||||
X86_64_06 = 0,
|
X86_64_06 = 0,
|
||||||
X86_64_07,
|
X86_64_07,
|
||||||
X86_64_0D,
|
X86_64_0E,
|
||||||
X86_64_16,
|
X86_64_16,
|
||||||
X86_64_17,
|
X86_64_17,
|
||||||
X86_64_1E,
|
X86_64_1E,
|
||||||
@ -2379,7 +2379,7 @@ static const struct dis386 dis386[] = {
|
|||||||
{ "orS", { Gv, EvS }, 0 },
|
{ "orS", { Gv, EvS }, 0 },
|
||||||
{ "orB", { AL, Ib }, 0 },
|
{ "orB", { AL, Ib }, 0 },
|
||||||
{ "orS", { eAX, Iv }, 0 },
|
{ "orS", { eAX, Iv }, 0 },
|
||||||
{ X86_64_TABLE (X86_64_0D) },
|
{ X86_64_TABLE (X86_64_0E) },
|
||||||
{ Bad_Opcode }, /* 0x0f extended opcode escape */
|
{ Bad_Opcode }, /* 0x0f extended opcode escape */
|
||||||
/* 10 */
|
/* 10 */
|
||||||
{ "adcB", { Ebh1, Gb }, 0 },
|
{ "adcB", { Ebh1, Gb }, 0 },
|
||||||
@ -6815,7 +6815,7 @@ static const struct dis386 x86_64_table[][2] = {
|
|||||||
{ "popP", { es }, 0 },
|
{ "popP", { es }, 0 },
|
||||||
},
|
},
|
||||||
|
|
||||||
/* X86_64_0D */
|
/* X86_64_0E */
|
||||||
{
|
{
|
||||||
{ "pushP", { cs }, 0 },
|
{ "pushP", { cs }, 0 },
|
||||||
},
|
},
|
||||||
|
Reference in New Issue
Block a user