Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Bergner <bergner@vnet.ibm.com>2009-10-01 23:24:48 +0400
committerPeter Bergner <bergner@vnet.ibm.com>2009-10-01 23:24:48 +0400
commit182f0f0f8c4c39cba7f3022d27b21fba28c68734 (patch)
tree87b338df1e4fad1b18ff20a423403422c3d013d2 /include/opcode/ppc.h
parentffca4d278ee9c95c03357761fe36cf3b81f11017 (diff)
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/ppc.h')
-rw-r--r--include/opcode/ppc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/opcode/ppc.h b/include/opcode/ppc.h
index c88485adb..4e147eb89 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)