diff options
author | Alan Modra <amodra@bigpond.net.au> | 2008-04-14 11:01:38 +0000 |
---|---|---|
committer | Alan Modra <amodra@bigpond.net.au> | 2008-04-14 11:01:38 +0000 |
commit | 401baae7e45fb8c423b85c571ab1f854c5153634 (patch) | |
tree | 8c86b72a04f1eac6e232fb4be7b76cba04f9afa6 /include | |
parent | 1a963f7f5a14083824784133af24654c0d10aa3e (diff) | |
download | gdb-401baae7e45fb8c423b85c571ab1f854c5153634.tar.gz |
ppc e500mc support
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 86b03c7179d..f2c8d4d6d1c 100644 --- a/include/opcode/ChangeLog +++ b/include/opcode/ChangeLog @@ -1,3 +1,7 @@ +2008-04-14 Edmar Wienskoski <edmar@freescale.com> + + * ppc.h: (PPC_OPCODE_E500MC): New. + 2008-04-03 H.J. Lu <hongjiu.lu@intel.com> * i386.h (MAX_OPERANDS): Set to 5. diff --git a/include/opcode/ppc.h b/include/opcode/ppc.h index 4cd81bf3225..f4023c7a2f1 100644 --- a/include/opcode/ppc.h +++ b/include/opcode/ppc.h @@ -149,6 +149,9 @@ extern const int powerpc_num_opcodes; /* Opcode is supported by CPUs with paired singles support. */ #define PPC_OPCODE_PPCPS 0x10000000 +/* Opcode is supported by Power E500MC */ +#define PPC_OPCODE_E500MC 0x20000000 + /* A macro to extract the major opcode from an instruction. */ #define PPC_OP(i) (((i) >> 26) & 0x3f) |