diff options
Diffstat (limited to 'include')
-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 b884a3867f5..afc0807eab8 100644 --- a/include/opcode/ChangeLog +++ b/include/opcode/ChangeLog @@ -1,3 +1,7 @@ +2007-08-08 Ben Elliston <bje@au.ibm.com> + + * ppc.h (PPC_OPCODE_PPCPS): New. + 2007-07-03 Nathan Sidwell <nathan@codesourcery.com> * m68k.h: Document j K & E. diff --git a/include/opcode/ppc.h b/include/opcode/ppc.h index 6771856fd5f..4cd81bf3225 100644 --- a/include/opcode/ppc.h +++ b/include/opcode/ppc.h @@ -146,6 +146,9 @@ extern const int powerpc_num_opcodes; /* Opcode is only supported by PowerPC Cell family. */ #define PPC_OPCODE_CELL 0x8000000 +/* Opcode is supported by CPUs with paired singles support. */ +#define PPC_OPCODE_PPCPS 0x10000000 + /* A macro to extract the major opcode from an instruction. */ #define PPC_OP(i) (((i) >> 26) & 0x3f) |