diff options
-rw-r--r-- | gas/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gas/testsuite/gas/i386/amd.d | 2 | ||||
-rw-r--r-- | opcodes/ChangeLog | 5 | ||||
-rw-r--r-- | opcodes/i386-dis.c | 2 |
4 files changed, 12 insertions, 2 deletions
diff --git a/gas/testsuite/ChangeLog b/gas/testsuite/ChangeLog index 2bbb56c..f707a6a 100644 --- a/gas/testsuite/ChangeLog +++ b/gas/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2007-05-14 H.J. Lu <hongjiu.lu@intel.com> + + PR binutils/4502 + * gas/i386/amd.d: Replace "pfmulhrw" with "pmulhrw". + 2007-05-04 Kazu Hirata <kazu@codesourcery.com> * gas/m68k/all.exp: Skip fmoveml on fido. diff --git a/gas/testsuite/gas/i386/amd.d b/gas/testsuite/gas/i386/amd.d index 2f3b5b5..8009260 100644 --- a/gas/testsuite/gas/i386/amd.d +++ b/gas/testsuite/gas/i386/amd.d @@ -27,7 +27,7 @@ Disassembly of section .text: 63: 0f 0f fc 9a [ ]*pfsub %mm4,%mm7 67: 0f 0f c5 aa [ ]*pfsubr %mm5,%mm0 6b: 0f 0f ce 0d [ ]*pi2fd %mm6,%mm1 - 6f: 0f 0f d7 b7 [ ]*pfmulhrw %mm7,%mm2 + 6f: 0f 0f d7 b7 [ ]*pmulhrw %mm7,%mm2 73: 2e 0f [ ]*\(bad\) 75: 0f 54 c3 [ ]*andps %xmm3,%xmm0 78: 07 [ ]*pop %es diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 4a743d9..3d999bb 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +2007-05-14 H.J. Lu <hongjiu.lu@intel.com> + + PR binutils/4502 + * i386-dis.c (Suffix3DNow): Replace "pfmulhrw" with "pmulhrw". + 2007-05-10 H.J. Lu <hongjiu.lu@intel.com> * i386-opc.h (ShortForm): Redefined. diff --git a/opcodes/i386-dis.c b/opcodes/i386-dis.c index 2fea87da2..5cd0b8d 100644 --- a/opcodes/i386-dis.c +++ b/opcodes/i386-dis.c @@ -5954,7 +5954,7 @@ static const char *const Suffix3DNow[] = { /* A8 */ NULL, NULL, "pfsubr", NULL, /* AC */ NULL, NULL, "pfacc", NULL, /* B0 */ "pfcmpeq", NULL, NULL, NULL, -/* B4 */ "pfmul", NULL, "pfrcpit2", "pfmulhrw", +/* B4 */ "pfmul", NULL, "pfrcpit2", "pmulhrw", /* B8 */ NULL, NULL, NULL, "pswapd", /* BC */ NULL, NULL, NULL, "pavgusb", /* C0 */ NULL, NULL, NULL, NULL, |