diff options
author | Peter Bergner <bergner@vnet.ibm.com> | 2008-06-25 16:49:03 +0000 |
---|---|---|
committer | Peter Bergner <bergner@vnet.ibm.com> | 2008-06-25 16:49:03 +0000 |
commit | c8187e1509b28d4d9c0bbc2de688144ef80537c0 (patch) | |
tree | 1f4b9196505755ceb0029faf86a962a3ea563c4c /gas | |
parent | 3bb06f783c65cdf0fe307d6b740ae3da67d2b67d (diff) | |
download | gdb-c8187e1509b28d4d9c0bbc2de688144ef80537c0.zip gdb-c8187e1509b28d4d9c0bbc2de688144ef80537c0.tar.gz gdb-c8187e1509b28d4d9c0bbc2de688144ef80537c0.tar.bz2 |
gas/
* config/tc-ppc.c (parse_cpu): Handle -m464.
(md_show_usage): Likewise.
opcodes/
* ppc-dis.c (powerpc_init_dialect): Handle -M464.
(print_ppc_disassembler_options): Likewise.
* ppc-opc.c (PPC464): Define.
(powerpc_opcodes): Add mfdcrux and mtdcrux.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-ppc.c | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 8644c79..27a50dc 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2008-06-25 Peter Bergner <bergner@vnet.ibm.com> + + * config/tc-ppc.c (parse_cpu): Handle -m464. + (md_show_usage): Likewise. + 2008-06-24 Eric B. Weddington <eric.weddington@atmel.com> Add support for ATtiny13A. diff --git a/gas/config/tc-ppc.c b/gas/config/tc-ppc.c index 0aec203..927ddb6 100644 --- a/gas/config/tc-ppc.c +++ b/gas/config/tc-ppc.c @@ -854,7 +854,8 @@ parse_cpu (const char *arg) || strcmp (arg, "405") == 0) ppc_cpu = (PPC_OPCODE_PPC | PPC_OPCODE_CLASSIC | PPC_OPCODE_403 | PPC_OPCODE_32); - else if (strcmp (arg, "440") == 0) + else if (strcmp (arg, "440") == 0 + || strcmp (arg, "464") == 0) ppc_cpu = (PPC_OPCODE_PPC | PPC_OPCODE_BOOKE | PPC_OPCODE_32 | PPC_OPCODE_440 | PPC_OPCODE_ISEL | PPC_OPCODE_RFMCI); else if (strcmp (arg, "7400") == 0 @@ -1123,6 +1124,7 @@ PowerPC options:\n\ generate code for PowerPC 603/604\n\ -m403, -m405 generate code for PowerPC 403/405\n\ -m440 generate code for PowerPC 440\n\ +-m464 generate code for PowerPC 464\n\ -m7400, -m7410, -m7450, -m7455\n\ generate code for PowerPC 7400/7410/7450/7455\n\ -m750cl generate code for PowerPC 750cl\n")); |