* config/tc-ppc.c (ppc_set_cpu): Don't select 64-bit based on

default cpu.
This commit is contained in:
Alan Modra 2005-08-16 03:17:53 +00:00
parent 2dea415724
commit 23d36e920e
2 changed files with 6 additions and 6 deletions

View File

@ -1,3 +1,8 @@
2005-08-16 Alan Modra <amodra@bigpond.net.au>
* config/tc-ppc.c (ppc_set_cpu): Don't select 64-bit based on
default cpu.
2005-08-15 Paul Brook <paul@codesourcery.com>
* config/tc-arm.c (do_t_mov_cmp): Fix encoding of i16-bit conditional

View File

@ -1155,12 +1155,7 @@ ppc_set_cpu ()
else if (strcmp (default_cpu, "rs6000") == 0)
ppc_cpu |= PPC_OPCODE_POWER | PPC_OPCODE_32;
else if (strncmp (default_cpu, "powerpc", 7) == 0)
{
if (default_cpu[7] == '6' && default_cpu[8] == '4')
ppc_cpu |= PPC_OPCODE_PPC | PPC_OPCODE_CLASSIC | PPC_OPCODE_64;
else
ppc_cpu |= PPC_OPCODE_PPC | PPC_OPCODE_CLASSIC | PPC_OPCODE_32;
}
ppc_cpu |= PPC_OPCODE_PPC | PPC_OPCODE_CLASSIC | PPC_OPCODE_32;
else
as_fatal (_("Unknown default cpu = %s, os = %s"),
default_cpu, default_os);