diff options
author | Alan Modra <amodra@gmail.com> | 2008-04-14 11:01:38 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2008-04-14 11:01:38 +0000 |
commit | 19a6653ce8c6d8a76586a54f3c0396063de5f987 (patch) | |
tree | adaff4ba47526fb3747e9f0b91dc95d09578b936 /gas/config/tc-ppc.c | |
parent | e2208220008a968fa98c03851a5e1eda4684ff2b (diff) | |
download | gdb-19a6653ce8c6d8a76586a54f3c0396063de5f987.zip gdb-19a6653ce8c6d8a76586a54f3c0396063de5f987.tar.gz gdb-19a6653ce8c6d8a76586a54f3c0396063de5f987.tar.bz2 |
ppc e500mc support
Diffstat (limited to 'gas/config/tc-ppc.c')
-rw-r--r-- | gas/config/tc-ppc.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gas/config/tc-ppc.c b/gas/config/tc-ppc.c index 5c1252c..ef54165 100644 --- a/gas/config/tc-ppc.c +++ b/gas/config/tc-ppc.c @@ -878,7 +878,13 @@ parse_cpu (const char *arg) ppc_cpu = (PPC_OPCODE_PPC | PPC_OPCODE_BOOKE | PPC_OPCODE_SPE | PPC_OPCODE_ISEL | PPC_OPCODE_EFS | PPC_OPCODE_BRLOCK | PPC_OPCODE_PMR | PPC_OPCODE_CACHELCK - | PPC_OPCODE_RFMCI); + | PPC_OPCODE_RFMCI | PPC_OPCODE_E500MC); + } + else if (strcmp (arg, "e500mc") == 0) + { + ppc_cpu = (PPC_OPCODE_PPC | PPC_OPCODE_BOOKE | PPC_OPCODE_ISEL + | PPC_OPCODE_PMR | PPC_OPCODE_CACHELCK + | PPC_OPCODE_RFMCI | PPC_OPCODE_E500MC); } else if (strcmp (arg, "spe") == 0) { @@ -1135,6 +1141,7 @@ PowerPC options:\n\ -maltivec generate code for AltiVec\n\ -me300 generate code for PowerPC e300 family\n\ -me500, -me500x2 generate code for Motorola e500 core complex\n\ +-me500mc, generate code for Freescale e500mc core complex\n\ -mspe generate code for Motorola SPE instructions\n\ -mregnames Allow symbolic names for registers\n\ -mno-regnames Do not allow symbolic names for registers\n")); |