diff options
author | Peter Bergner <bergner@vnet.ibm.com> | 2009-10-02 14:42:42 +0000 |
---|---|---|
committer | Peter Bergner <bergner@vnet.ibm.com> | 2009-10-02 14:42:42 +0000 |
commit | 9fe54b1ca1c054c9323d232bf077abadf4d02c88 (patch) | |
tree | e0de755857191e27baae856d4311729eb529dea0 /opcodes/ppc-dis.c | |
parent | 4a056f1472ee3ce5a2dde5df46a0faf6e794b114 (diff) | |
download | gdb-9fe54b1ca1c054c9323d232bf077abadf4d02c88.zip gdb-9fe54b1ca1c054c9323d232bf077abadf4d02c88.tar.gz gdb-9fe54b1ca1c054c9323d232bf077abadf4d02c88.tar.bz2 |
gas/
* config/tc-ppc.c (md_show_usage): Document -m476.
* doc/c-ppc.texi (PowerPC-Opts): Document -m476.
gas/testsuite/
* gas/ppc/476.s: New test.
* gas/ppc/476.d: Likewise.
* gas/ppc/ppc.exp: Run the 476 test.
include/opcode/
* ppc.h (PPC_OPCODE_476): Define.
opcodes/
* ppc-dis.c (ppc_opts): Add "476" entry.
* ppc-opc.c (PPC476): Define.
(powerpc_opcodes): Update mnemonics where required for 476.
Diffstat (limited to 'opcodes/ppc-dis.c')
-rw-r--r-- | opcodes/ppc-dis.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/opcodes/ppc-dis.c b/opcodes/ppc-dis.c index 3af02bc..ac88f76 100644 --- a/opcodes/ppc-dis.c +++ b/opcodes/ppc-dis.c @@ -62,6 +62,10 @@ struct ppc_mopt ppc_opts[] = { { "464", (PPC_OPCODE_PPC | PPC_OPCODE_BOOKE | PPC_OPCODE_32 | PPC_OPCODE_440 | PPC_OPCODE_ISEL | PPC_OPCODE_RFMCI), 0 }, + { "476", (PPC_OPCODE_PPC | PPC_OPCODE_CLASSIC | PPC_OPCODE_ISEL + | PPC_OPCODE_440 | PPC_OPCODE_476 | PPC_OPCODE_POWER4 + | PPC_OPCODE_POWER5), + 0 }, { "601", (PPC_OPCODE_PPC | PPC_OPCODE_CLASSIC | PPC_OPCODE_601 | PPC_OPCODE_32), 0 }, |