diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2006-02-11 18:08:35 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2006-02-11 18:08:35 +0000 |
commit | a1cfb73ee02dc8dfa54dd3d7c633f28a7faf1a1d (patch) | |
tree | 322d6426c063ba906cae7660c405cd9e2cbc0286 /opcodes | |
parent | 6dd5059a0631912657dd4704abc88cab1a04927f (diff) | |
download | gdb-a1cfb73ee02dc8dfa54dd3d7c633f28a7faf1a1d.zip gdb-a1cfb73ee02dc8dfa54dd3d7c633f28a7faf1a1d.tar.gz gdb-a1cfb73ee02dc8dfa54dd3d7c633f28a7faf1a1d.tar.bz2 |
gas/testsuite/
2006-02-11 H.J. Lu <hongjiu.lu@intel.com>
* gas/i386/i386.exp: Add "x86-64-drx" and "x86-64-drx-suffix".
* gas/i386/x86-64-crx-suffix.d: Minor update.
* gas/i386/x86-64-drx-suffix.d: New file.
* gas/i386/x86-64-drx.d: Likewise.
* gas/i386/x86-64-drx.s: Likewise.
opcodes/
2006-02-11 H.J. Lu <hongjiu.lu@intel.com>
* i386-dis.c (dis386_twobyte): Use "movZ" for debug register
moves.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 5 | ||||
-rw-r--r-- | opcodes/i386-dis.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 629ab5e..f36656c 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,5 +1,10 @@ 2006-02-11 H.J. Lu <hongjiu.lu@intel.com> + * i386-dis.c (dis386_twobyte): Use "movZ" for debug register + moves. + +2006-02-11 H.J. Lu <hongjiu.lu@intel.com> + * i386-dis.c ('Z'): Add a new macro. (dis386_twobyte): Use "movZ" for control register moves. diff --git a/opcodes/i386-dis.c b/opcodes/i386-dis.c index 65cb43c..4fb487d 100644 --- a/opcodes/i386-dis.c +++ b/opcodes/i386-dis.c @@ -832,9 +832,9 @@ static const struct dis386 dis386_twobyte[] = { { "(bad)", XX, XX, XX }, /* 20 */ { "movZ", Rm, Cm, XX }, - { "movL", Rm, Dm, XX }, + { "movZ", Rm, Dm, XX }, { "movZ", Cm, Rm, XX }, - { "movL", Dm, Rm, XX }, + { "movZ", Dm, Rm, XX }, { "movL", Rd, Td, XX }, { "(bad)", XX, XX, XX }, { "movL", Td, Rd, XX }, |