diff options
author | Alan Modra <amodra@gmail.com> | 2002-08-30 08:11:44 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2002-08-30 08:11:44 +0000 |
commit | 37f45cf8983f613d7411c0d7770505da5bb4e76a (patch) | |
tree | a50f02e65d81e59a5278ac55f8fd4b4a9670acc2 /bfd/cpu-rs6000.c | |
parent | c860120cadb5f04d1b6321149674bde7c39f1ee1 (diff) | |
download | gdb-37f45cf8983f613d7411c0d7770505da5bb4e76a.zip gdb-37f45cf8983f613d7411c0d7770505da5bb4e76a.tar.gz gdb-37f45cf8983f613d7411c0d7770505da5bb4e76a.tar.bz2 |
* 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 89b9230..777611e 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; } |