* Makefile.am: Run "make dep-am".

* Makefile.in: Regenerate.

	* cpu-avr.c (compatible): Don't use hard-coded mach constants.
	* cpu-powerpc.c (powerpc_compatible): Likewise.
	* cpu-rs6000.c (rs6000_compatible): Likewise.
This commit is contained in:
Alan Modra 2002-08-30 08:11:44 +00:00
parent c860120cad
commit 37f45cf898
6 changed files with 74 additions and 57 deletions

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 == 0)
if (a->mach == bfd_mach_ppc)
return a;
return NULL;
}