diff options
author | Peter Bergner <bergner@vnet.ibm.com> | 2009-10-01 19:24:48 +0000 |
---|---|---|
committer | Peter Bergner <bergner@vnet.ibm.com> | 2009-10-01 19:24:48 +0000 |
commit | 634b50f2a6239deaa1eb3a9811b6b11659fa2e1b (patch) | |
tree | 6b7fee79372ce3cce5bf8b4bdefd54a5daa0709e /opcodes/ppc-dis.c | |
parent | 209f53f5248aa219cad6261bdd6622c804c485e9 (diff) | |
download | gdb-634b50f2a6239deaa1eb3a9811b6b11659fa2e1b.zip gdb-634b50f2a6239deaa1eb3a9811b6b11659fa2e1b.tar.gz gdb-634b50f2a6239deaa1eb3a9811b6b11659fa2e1b.tar.bz2 |
gas/
* config/tc-ppc.c (md_show_usage): Rename "ppca2" to "a2".
* doc/c-ppc.texi (PowerPC-Opts): Likewise.
gas/testsuite/
* gas/ppc/a2.d: Rename "ppca2" to "a2".
include/opcode/
* ppc.h (PPC_OPCODE_A2): Rename from PPC_OPCODE_PPCA2.
opcodes/
* ppc-opc.c (PPCA2): Use renamed mask PPC_OPCODE_A2.
* ppc-dis.c (ppc_opts): Likewise.
Rename "ppca2" to "a2".
Diffstat (limited to 'opcodes/ppc-dis.c')
-rw-r--r-- | opcodes/ppc-dis.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/opcodes/ppc-dis.c b/opcodes/ppc-dis.c index 70d2bee..3af02bc 100644 --- a/opcodes/ppc-dis.c +++ b/opcodes/ppc-dis.c @@ -141,9 +141,9 @@ struct ppc_mopt ppc_opts[] = { { "ppc64bridge", (PPC_OPCODE_PPC | PPC_OPCODE_CLASSIC | PPC_OPCODE_64_BRIDGE | PPC_OPCODE_64), 0 }, - { "ppca2", (PPC_OPCODE_PPC | PPC_OPCODE_CLASSIC | PPC_OPCODE_ISEL + { "a2", (PPC_OPCODE_PPC | PPC_OPCODE_CLASSIC | PPC_OPCODE_ISEL | PPC_OPCODE_POWER4 | PPC_OPCODE_POWER5 | PPC_OPCODE_CACHELCK - | PPC_OPCODE_64 | PPC_OPCODE_PPCA2), + | PPC_OPCODE_64 | PPC_OPCODE_A2), 0 }, { "ppcps", (PPC_OPCODE_PPC | PPC_OPCODE_PPCPS), 0 }, |