diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2006-05-09 16:05:40 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2006-05-09 16:05:40 +0000 |
commit | cb6d34334f9cbe5f741960c102e2beb8931d5394 (patch) | |
tree | 7372387b9c2120077ab093bd297fb9979aada9d0 /opcodes | |
parent | 52fb643739a7929a3091586e95336c4d991ee3b6 (diff) | |
download | gdb-cb6d34334f9cbe5f741960c102e2beb8931d5394.zip gdb-cb6d34334f9cbe5f741960c102e2beb8931d5394.tar.gz gdb-cb6d34334f9cbe5f741960c102e2beb8931d5394.tar.bz2 |
gas/testsuite/
2006-05-09 H.J. Lu <hongjiu.lu@intel.com>
* gas/i386/i386.exp: Run x86-64-gidt.
* gas/i386/x86-64-gidt.d: New file.
* gas/i386/x86-64-gidt.s: Likewise.
opcodes/
2006-05-09 H.J. Lu <hongjiu.lu@intel.com>
* i386-dis.c (grps): Update sgdt/sidt for 64bit.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 4 | ||||
-rw-r--r-- | opcodes/i386-dis.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 6a21c58..b3c5b6f 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,7 @@ +2006-05-09 H.J. Lu <hongjiu.lu@intel.com> + + * i386-dis.c (grps): Update sgdt/sidt for 64bit. + 2006-05-05 Julian Brown <julian@codesourcery.com> * arm-dis.c (coprocessor_opcodes): Don't interpret fldmx/fstmx as diff --git a/opcodes/i386-dis.c b/opcodes/i386-dis.c index f73e883..4c8949f 100644 --- a/opcodes/i386-dis.c +++ b/opcodes/i386-dis.c @@ -1400,8 +1400,8 @@ static const struct dis386 grps[][8] = { }, /* GRP7 */ { - { "sgdtIQ", VMX_Fixup, 0, XX, XX }, - { "sidtIQ", PNI_Fixup, 0, XX, XX }, + { "sgdt{Q|IQ||}", VMX_Fixup, 0, XX, XX }, + { "sidt{Q|IQ||}", PNI_Fixup, 0, XX, XX }, { "lgdt{Q|Q||}", M, XX, XX }, { "lidt{Q|Q||}", SVME_Fixup, 0, XX, XX }, { "smswQ", Ev, XX, XX }, |