* config/tc-ppc.c (md_parse_option): Handle -m440.

(md_apply_fix3): Warning fix.
	(md_show_usage): Add -m440.
	* doc/c-ppc.texi: Document -m440.
This commit is contained in:
Alan Modra 2003-08-19 07:09:44 +00:00
parent 7d5b217e2c
commit 3d8aea2f47
3 changed files with 15 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2003-08-19 Alan Modra <amodra@bigpond.net.au>
* config/tc-ppc.c (md_parse_option): Handle -m440.
(md_show_usage): Add -m440.
(md_apply_fix3): Warning fix.
* doc/c-ppc.texi: Document -m440.
2003-08-16 Benjamin Kalytta <bkausbk@web.de>
* read.c (s_print): Check for NULL.

View File

@ -910,6 +910,9 @@ md_parse_option (c, 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)
ppc_cpu = (PPC_OPCODE_PPC | PPC_OPCODE_BOOKE | PPC_OPCODE_32
| PPC_OPCODE_440);
else if (strcmp (arg, "7400") == 0
|| strcmp (arg, "7410") == 0
|| strcmp (arg, "7450") == 0
@ -1074,6 +1077,7 @@ PowerPC options:\n\
-mppc, -mppc32, -m603, -m604\n\
generate code for PowerPC 603/604\n\
-m403, -m405 generate code for PowerPC 403/405\n\
-m440 generate code for PowerPC 440\n\
-m7400, -m7410, -m7450, -m7455\n\
generate code For PowerPC 7400/7410/7450/7455\n"));
fprintf (stream, _("\
@ -5733,7 +5737,7 @@ md_apply_fix3 (fixP, valP, seg)
abort ();
{
unsigned char *where = fixP->fx_frag->fr_literal + fixP->fx_where;
long val, mask;
unsigned long val, mask;
if (target_big_endian)
val = bfd_getb32 (where - 2);

View File

@ -48,6 +48,9 @@ Generate code for PowerPC 603/604.
@item -m403, -m405
Generate code for PowerPC 403/405.
@item -m440
Generate code for PowerPC 440. BookE and some 405 instructions.
@item -m7400, -m7410, -m7450, -m7455
Generate code for PowerPC 7400/7410/7450/7455.