diff options
Diffstat (limited to 'include/opcode')
-rw-r--r-- | include/opcode/ChangeLog | 4 | ||||
-rw-r--r-- | include/opcode/ppc.h | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/include/opcode/ChangeLog b/include/opcode/ChangeLog index 476fdcf..0282c46 100644 --- a/include/opcode/ChangeLog +++ b/include/opcode/ChangeLog @@ -1,3 +1,7 @@ +2009-09-21 Ben Elliston <bje@au.ibm.com> + + * ppc.h (PPC_OPCODE_PPCA2): New. + 2009-09-05 Martin Thuresson <martin@mtme.org> * ia64.h (struct ia64_operand): Renamed member class to op_class. diff --git a/include/opcode/ppc.h b/include/opcode/ppc.h index dc9a7ba..79b1562 100644 --- a/include/opcode/ppc.h +++ b/include/opcode/ppc.h @@ -165,6 +165,9 @@ extern const int powerpc_num_opcodes; /* Opcode is supported by Vector-Scalar (VSX) Unit */ #define PPC_OPCODE_VSX 0x80000000 +/* Opcode is supported by A2. */ +#define PPC_OPCODE_PPCA2 0x100000000ULL + /* A macro to extract the major opcode from an instruction. */ #define PPC_OP(i) (((i) >> 26) & 0x3f) |