diff options
author | Peter Bergner <bergner@vnet.ibm.com> | 2012-10-05 14:06:20 +0000 |
---|---|---|
committer | Peter Bergner <bergner@vnet.ibm.com> | 2012-10-05 14:06:20 +0000 |
commit | c7a5aa9c64fc5b4fd7de8119dd6597127060e884 (patch) | |
tree | a6449e392a527aa0704deeceb8cdbd98a890b21a /opcodes/ppc-dis.c | |
parent | c9824451ad40bf7ddb81d21941b880e869c3620a (diff) | |
download | gdb-c7a5aa9c64fc5b4fd7de8119dd6597127060e884.zip gdb-c7a5aa9c64fc5b4fd7de8119dd6597127060e884.tar.gz gdb-c7a5aa9c64fc5b4fd7de8119dd6597127060e884.tar.bz2 |
opcodes/
* ppc-dis.c (ppc_opts) <altivec>: Use PPC_OPCODE_ALTIVEC2;
* ppc-opc.c (VBA): New define.
(powerpc_opcodes) <vcuxwfp, vcsxwfp, vcfpuxws, vcfpsxsw, vmr, vnot,
mfppr, mfppr32, mtppr, mtppr32>: New extended mnemonics.
gas/testsuite/
* gas/ppc/power7.d: Add tests for mfppr, mfppr32, mtppr and mtppr32.
* gas/ppc/power7.s: Likewise.
* gas/ppc/altivec.d: Add tests for all legacy Altivec instructions.
* gas/ppc/altivec.s: Likewise.
* gas/ppc/altivec2.d: New test file.
* gas/ppc/altivec2.s: Likewise.
* gas/ppc/ppc.exp: Run it.
Diffstat (limited to 'opcodes/ppc-dis.c')
-rw-r--r-- | opcodes/ppc-dis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opcodes/ppc-dis.c b/opcodes/ppc-dis.c index 44310e8..03b3160 100644 --- a/opcodes/ppc-dis.c +++ b/opcodes/ppc-dis.c @@ -88,7 +88,7 @@ struct ppc_mopt ppc_opts[] = { | PPC_OPCODE_A2), 0 }, { "altivec", (PPC_OPCODE_PPC), - PPC_OPCODE_ALTIVEC }, + PPC_OPCODE_ALTIVEC | PPC_OPCODE_ALTIVEC2 }, { "any", 0, PPC_OPCODE_ANY }, { "booke", (PPC_OPCODE_PPC | PPC_OPCODE_BOOKE), |