diff options
author | Maciej W. Rozycki <macro@linux-mips.org> | 2011-02-28 16:34:39 +0000 |
---|---|---|
committer | Maciej W. Rozycki <macro@linux-mips.org> | 2011-02-28 16:34:39 +0000 |
commit | 0067d8fc73d10d58fe707bdbe8c5970ed80d2751 (patch) | |
tree | 2e319e7db3a27f02a45c3d17dd8141f2b6b9408c /opcodes | |
parent | d455268f737c65cc7c12aadaf93001d6bcbb20ba (diff) | |
download | gdb-0067d8fc73d10d58fe707bdbe8c5970ed80d2751.zip gdb-0067d8fc73d10d58fe707bdbe8c5970ed80d2751.tar.gz gdb-0067d8fc73d10d58fe707bdbe8c5970ed80d2751.tar.bz2 |
opcodes/
* mips-opc.c (mips_builtin_opcodes): Correct register use
annotation of "alnv.ps".
gas/testsuite/
* gas/mips/alnv_ps-swap.d: New test for ALNV.PS instruction
branch swapping.
* gas/mips/alnv_ps-swap.s: Source for the new test.
* gas/mips/mips.exp: Run the new test.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 5 | ||||
-rw-r--r-- | opcodes/mips-opc.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 90dfa27..ba013b2 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,5 +1,10 @@ 2011-02-28 Maciej W. Rozycki <macro@codesourcery.com> + * mips-opc.c (mips_builtin_opcodes): Correct register use + annotation of "alnv.ps". + +2011-02-28 Maciej W. Rozycki <macro@codesourcery.com> + * mips-opc.c (mips_builtin_opcodes): Add "pref" macro. 2011-02-22 Mike Frysinger <vapier@gentoo.org> diff --git a/opcodes/mips-opc.c b/opcodes/mips-opc.c index 78b3fa7..8f51643 100644 --- a/opcodes/mips-opc.c +++ b/opcodes/mips-opc.c @@ -297,7 +297,7 @@ const struct mips_opcode mips_builtin_opcodes[] = {"alni.ob", "X,Y,Z,O", 0x78000018, 0xff00003f, WR_D|RD_S|RD_T|FP_D, 0, MX|SB1 }, {"alni.ob", "D,S,T,%", 0x48000018, 0xff00003f, WR_D|RD_S|RD_T, 0, N54 }, {"alni.qh", "X,Y,Z,O", 0x7800001a, 0xff00003f, WR_D|RD_S|RD_T|FP_D, 0, MX }, -{"alnv.ps", "D,V,T,s", 0x4c00001e, 0xfc00003f, WR_D|RD_S|RD_T|FP_D, 0, I5_33 }, +{"alnv.ps", "D,V,T,s", 0x4c00001e, 0xfc00003f, WR_D|RD_S|RD_T|RD_s|FP_D, 0, I5_33 }, {"alnv.ob", "X,Y,Z,s", 0x78000019, 0xfc00003f, WR_D|RD_S|RD_T|RD_s|FP_D, 0, MX|SB1 }, {"alnv.qh", "X,Y,Z,s", 0x7800001b, 0xfc00003f, WR_D|RD_S|RD_T|RD_s|FP_D, 0, MX }, {"and", "d,v,t", 0x00000024, 0xfc0007ff, WR_d|RD_s|RD_t, 0, I1 }, |