* cpu-powerpc.c (powerpc_compatible): Any ISA in the PowerPC

family is a superset of <bfd_arch_rs6000,bfd_mach_rs6k>.
This commit is contained in:
Jim Blandy 2003-11-20 18:42:21 +00:00
parent 515cc92ea5
commit 43dd9340d4
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2003-11-20 Jim Blandy <jimb@redhat.com>
* cpu-powerpc.c (powerpc_compatible): Any ISA in the PowerPC
family is a superset of <bfd_arch_rs6000,bfd_mach_rs6k>.
2003-11-20 Martin Schwidefsky <schwidefsky@de.ibm.com>
* elf32-s390.c (elf_s390_relocate_section): Don't recalculate symbol

View File

@ -41,7 +41,7 @@ powerpc_compatible (a,b)
case bfd_arch_powerpc:
return bfd_default_compatible (a, b);
case bfd_arch_rs6000:
if (a->mach == bfd_mach_ppc)
if (b->mach == bfd_mach_rs6k)
return a;
return NULL;
}