diff options
author | Geoffrey Keating <geoffk@geoffk.org> | 2000-07-09 20:28:51 +0000 |
---|---|---|
committer | Geoffrey Keating <geoffk@geoffk.org> | 2000-07-09 20:28:51 +0000 |
commit | 1da5001cc9ee419de9c1cdee45b62c27ee77f7d3 (patch) | |
tree | 1acc71524424a2e3d8c31fbe5faf815dd6ddaaf3 /opcodes | |
parent | c3b6c27c01332f22c183764bc3e99762591f681c (diff) | |
download | binutils-1da5001cc9ee419de9c1cdee45b62c27ee77f7d3.zip binutils-1da5001cc9ee419de9c1cdee45b62c27ee77f7d3.tar.gz binutils-1da5001cc9ee419de9c1cdee45b62c27ee77f7d3.tar.bz2 |
* ppc-opc.c (powerpc_opcodes): Correct suffix for vslw.
Patch by Randall J Fisher <rfisher@ecn.purdue.edu>.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 5 | ||||
-rw-r--r-- | opcodes/ppc-opc.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index b5c6186..71ec3fb 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,8 @@ +2000-07-09 Geoffrey Keating <geoffk@cygnus.com> + + * ppc-opc.c (powerpc_opcodes): Correct suffix for vslw. + Patch by Randall J Fisher <rfisher@ecn.purdue.edu>. + 2000-07-09 Alan Modra <alan@linuxcare.com.au> * hppa-dis.c (fput_reg, fput_fp_reg, fput_fp_reg_r, fput_creg, diff --git a/opcodes/ppc-opc.c b/opcodes/ppc-opc.c index 62f7bd0..0576c49 100644 --- a/opcodes/ppc-opc.c +++ b/opcodes/ppc-opc.c @@ -1520,7 +1520,7 @@ const struct powerpc_opcode powerpc_opcodes[] = { { "vsldoi", VXA(4, 44), VXA_MASK, PPCVEC, { VD, VA, VB, SHB } }, { "vslh", VX(4, 324), VX_MASK, PPCVEC, { VD, VA, VB } }, { "vslo", VX(4, 1036), VX_MASK, PPCVEC, { VD, VA, VB } }, -{ "vslw", VX(4, 338), VX_MASK, PPCVEC, { VD, VA, VB } }, +{ "vslw", VX(4, 388), VX_MASK, PPCVEC, { VD, VA, VB } }, { "vspltb", VX(4, 524), VX_MASK, PPCVEC, { VD, VB, UIMM } }, { "vsplth", VX(4, 588), VX_MASK, PPCVEC, { VD, VB, UIMM } }, { "vspltisb", VX(4, 780), VX_MASK, PPCVEC, { VD, SIMM } }, |