aboutsummaryrefslogtreecommitdiff
path: root/include/opcode
diff options
context:
space:
mode:
authorPeter Bergner <bergner@vnet.ibm.com>2009-10-01 19:24:48 +0000
committerPeter Bergner <bergner@vnet.ibm.com>2009-10-01 19:24:48 +0000
commit634b50f2a6239deaa1eb3a9811b6b11659fa2e1b (patch)
tree6b7fee79372ce3cce5bf8b4bdefd54a5daa0709e /include/opcode
parent209f53f5248aa219cad6261bdd6622c804c485e9 (diff)
downloadgdb-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 'include/opcode')
-rw-r--r--include/opcode/ChangeLog4
-rw-r--r--include/opcode/ppc.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/include/opcode/ChangeLog b/include/opcode/ChangeLog
index 2fddcdf..8a86f4b 100644
--- a/include/opcode/ChangeLog
+++ b/include/opcode/ChangeLog
@@ -1,3 +1,7 @@
+2009-10-01 Peter Bergner <bergner@vnet.ibm.com>
+
+ * ppc.h (PPC_OPCODE_A2): Rename from PPC_OPCODE_PPCA2.
+
2009-09-29 DJ Delorie <dj@redhat.com>
* rx.h: New file.
diff --git a/include/opcode/ppc.h b/include/opcode/ppc.h
index c88485a..4e147eb 100644
--- a/include/opcode/ppc.h
+++ b/include/opcode/ppc.h
@@ -168,7 +168,7 @@ extern const int powerpc_num_opcodes;
#define PPC_OPCODE_VSX 0x80000000
/* Opcode is supported by A2. */
-#define PPC_OPCODE_PPCA2 0x100000000ULL
+#define PPC_OPCODE_A2 0x100000000ULL
/* A macro to extract the major opcode from an instruction. */
#define PPC_OP(i) (((i) >> 26) & 0x3f)