From: Alan Modra Date: Thu, 19 May 2005 06:59:36 +0000 (+0000) Subject: * ppc.h (PPC_OPCODE_POWER5): Define. X-Git-Tag: insight_6_8-branchpoint~5066 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=913b422686b8f66080d20be40d0a21939e769d1f;p=pf3gnuchains%2Fpf3gnuchains4x.git * ppc.h (PPC_OPCODE_POWER5): Define. --- diff --git a/include/opcode/ChangeLog b/include/opcode/ChangeLog index 91ad24d01b..a84402de1c 100644 --- a/include/opcode/ChangeLog +++ b/include/opcode/ChangeLog @@ -1,3 +1,7 @@ +2005-05-19 Anton Blanchard + + * ppc.h (PPC_OPCODE_POWER5): Define. + 2005-05-10 Nick Clifton * Update the address and phone number of the FSF organization in diff --git a/include/opcode/ppc.h b/include/opcode/ppc.h index ef097a0ece..851b8bbab8 100644 --- a/include/opcode/ppc.h +++ b/include/opcode/ppc.h @@ -134,6 +134,9 @@ extern const int powerpc_num_opcodes; /* Opcode is supported by machine check APU. */ #define PPC_OPCODE_RFMCI 0x800000 +/* Opcode is only supported by Power5 architecture. */ +#define PPC_OPCODE_POWER5 0x1000000 + /* A macro to extract the major opcode from an instruction. */ #define PPC_OP(i) (((i) >> 26) & 0x3f)