diff options
author | Geoffrey Keating <geoffk@geoffk.org> | 2000-08-31 06:48:49 +0000 |
---|---|---|
committer | Geoffrey Keating <geoffk@geoffk.org> | 2000-08-31 06:48:49 +0000 |
commit | e0c216497193db832f45788426cce93937a28b8d (patch) | |
tree | 2b47ff5919001dd2bc91a1fa596dd832d240fc98 /gas | |
parent | cf39a089d6e4ad6ed14a8329077f01c12b2bf9fd (diff) | |
download | ppe42-binutils-e0c216497193db832f45788426cce93937a28b8d.tar.gz ppe42-binutils-e0c216497193db832f45788426cce93937a28b8d.zip |
In src/gas/ChangeLog:
2000-08-30 Mark Hatle <mhatle@mvista.com>
* config/tc-ppc.c (md_parse_option): Recognize -m405.
In src/opcodes/ChangeLog:
2000-08-30 Mark Hatle <mhatle@mvista.com>
* ppc-opc.c Add XTLB macro for a few PPC 4xx extended mnemonics.
(powerpc_opcodes): Add table entries for PPC 405 instructions.
Changed rfci, icbt, mfdcr, dccci, mtdcr, iccci from PPC to PPC403
instructions.
Added extended mnemonic mftbl as defined in the 405GP manual
for all PPCs.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 4 | ||||
-rw-r--r-- | gas/config/tc-ppc.c | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index e6dcb2295e..c998a5fb83 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2000-08-30 Mark Hatle <mhatle@mvista.com> + + * config/tc-ppc.c (md_parse_option): Recognize -m405. + 2000-08-31 Kazu Hirata <kazu@hxi.com> * listing.c: Fix formatting. diff --git a/gas/config/tc-ppc.c b/gas/config/tc-ppc.c index 509503e45e..ca5f5fffb3 100644 --- a/gas/config/tc-ppc.c +++ b/gas/config/tc-ppc.c @@ -842,6 +842,7 @@ md_parse_option (c, arg) else if (strcmp (arg, "ppc") == 0 || strcmp (arg, "ppc32") == 0 || strcmp (arg, "403") == 0 + || strcmp (arg, "405") == 0 || strcmp (arg, "603") == 0 || strcmp (arg, "604") == 0) ppc_cpu = PPC_OPCODE_PPC; @@ -962,7 +963,7 @@ PowerPC options:\n\ -mpwrx, -mpwr2 generate code for IBM POWER/2 (RIOS2)\n\ -mpwr generate code for IBM POWER (RIOS1)\n\ -m601 generate code for Motorola PowerPC 601\n\ --mppc, -mppc32, -m403, -m603, -m604\n\ +-mppc, -mppc32, -m403, -m405, -m603, -m604\n\ generate code for Motorola PowerPC 603/604\n\ -mppc64, -m620 generate code for Motorola PowerPC 620\n\ -mppc64bridge generate code for PowerPC 64, including bridge insns\n\ |