2007-10-04 H.J. Lu <hongjiu.lu@intel.com>
authorH.J. Lu <hjl.tools@gmail.com>
Thu, 4 Oct 2007 21:02:38 +0000 (21:02 +0000)
committerH.J. Lu <hjl.tools@gmail.com>
Thu, 4 Oct 2007 21:02:38 +0000 (21:02 +0000)
* 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.

opcodes/ChangeLog
opcodes/i386-dis.c

index b76d53358877852a76100760968328786a57f8c2..bf1f8db81688d89f506bf091605a5ccb223bf39e 100644 (file)
@@ -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.
index 84572b2d58831a94522950540169e817109786d5..cb83f6fa69b29e2b4cd2c805efc55d8b8d918fe9 100644 (file)
@@ -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 */
This page took 0.030095 seconds and 4 git commands to generate.