diff options
author | Alan Modra <amodra@bigpond.net.au> | 2002-08-30 08:11:44 +0000 |
---|---|---|
committer | Alan Modra <amodra@bigpond.net.au> | 2002-08-30 08:11:44 +0000 |
commit | e7eb1c7e0291abbeca46bc0472ca01bd512083d4 (patch) | |
tree | 1a5d6b2ac56bf0644eeca514bf8fa6a4e1404b22 /bfd/cpu-rs6000.c | |
parent | 1b9c511993ba4c3428b986a4ab33778aed66ffc5 (diff) | |
download | gdb-e7eb1c7e0291abbeca46bc0472ca01bd512083d4.tar.gz |
* 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.
Diffstat (limited to 'bfd/cpu-rs6000.c')
-rw-r--r-- | bfd/cpu-rs6000.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/cpu-rs6000.c b/bfd/cpu-rs6000.c index 89b92308c89..777611e603a 100644 --- a/bfd/cpu-rs6000.c +++ b/bfd/cpu-rs6000.c @@ -46,7 +46,7 @@ rs6000_compatible (a,b) case bfd_arch_rs6000: return bfd_default_compatible (a, b); case bfd_arch_powerpc: - if (b->mach == 0) + if (b->mach == bfd_mach_rs6k) return b; return NULL; } |