diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2007-10-04 21:02:38 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2007-10-04 21:02:38 +0000 |
commit | df26e7af0769e3fc15c64485eaa0792e2b22a654 (patch) | |
tree | 4e01a4c624ef0043856564be5665c8d3a766b119 | |
parent | 955e1e6a77cac122171c75c5a475732400ea8d92 (diff) | |
download | binutils-df26e7af0769e3fc15c64485eaa0792e2b22a654.zip binutils-df26e7af0769e3fc15c64485eaa0792e2b22a654.tar.gz binutils-df26e7af0769e3fc15c64485eaa0792e2b22a654.tar.bz2 |
2007-10-04 H.J. Lu <hongjiu.lu@intel.com>
* i386-dis.c (MOD_0F12_PREFIX_0): Use "movlps" and "movhlps"
instead of "movlpX" and "movhlpX", respectively.
(MOD_0F16_PREFIX_0): Use "movhps" and "movlhps" instead of
"movhpX" and "movlhpX", respectively.
-rw-r--r-- | opcodes/ChangeLog | 7 | ||||
-rw-r--r-- | opcodes/i386-dis.c | 8 |
2 files changed, 11 insertions, 4 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index b76d533..bf1f8db 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,10 @@ +2007-10-04 H.J. Lu <hongjiu.lu@intel.com> + + * i386-dis.c (MOD_0F12_PREFIX_0): Use "movlps" and "movhlps" + instead of "movlpX" and "movhlpX", respectively. + (MOD_0F16_PREFIX_0): Use "movhps" and "movlhps" instead of + "movhpX" and "movlhpX", respectively. + 2007-10-04 Nick Clifton <nickc@redhat.com> * configure.in (WIN32LDFLAGS): Rename to SHARED_LDFLAGS. diff --git a/opcodes/i386-dis.c b/opcodes/i386-dis.c index 84572b2..cb83f6f 100644 --- a/opcodes/i386-dis.c +++ b/opcodes/i386-dis.c @@ -4684,13 +4684,13 @@ static const struct dis386 mod_table[][2] = { }, { /* MOD_0F12_PREFIX_0 */ - { "movlpX", { XM, EXq } }, - { "movhlpX", { XM, EXq } }, + { "movlps", { XM, EXq } }, + { "movhlps", { XM, EXq } }, }, { /* MOD_0F16_PREFIX_0 */ - { "movhpX", { XM, EXq } }, - { "movlhpX", { XM, EXq } }, + { "movhps", { XM, EXq } }, + { "movlhps", { XM, EXq } }, }, { /* MOD_0FF0_PREFIX_3 */ |