From: Jim Blandy Date: Thu, 20 Nov 2003 18:42:21 +0000 (+0000) Subject: * cpu-powerpc.c (powerpc_compatible): Any ISA in the PowerPC X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=43dd9340d41161e01c2892e90071f13826d99d49;p=binutils-gdb.git * cpu-powerpc.c (powerpc_compatible): Any ISA in the PowerPC family is a superset of . --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index ad3d9ac726a..69d676ff310 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2003-11-20 Jim Blandy + + * cpu-powerpc.c (powerpc_compatible): Any ISA in the PowerPC + family is a superset of . + 2003-11-20 Martin Schwidefsky * elf32-s390.c (elf_s390_relocate_section): Don't recalculate symbol diff --git a/bfd/cpu-powerpc.c b/bfd/cpu-powerpc.c index 20b49094198..a4e72d5bf30 100644 --- a/bfd/cpu-powerpc.c +++ b/bfd/cpu-powerpc.c @@ -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; }