diff options
author | Jakub Jelinek <jakub@redhat.com> | 2004-07-30 10:08:00 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2004-07-30 10:08:00 +0000 |
commit | 7946e94a55158e8100d029a5ee9825f35e82e422 (patch) | |
tree | 4986cf72c6d9bf50b21375e777755a98210cab08 /bfd/archures.c | |
parent | ff636ee388a8727b9b3393d67a2f1e13d7343839 (diff) | |
download | gdb-7946e94a55158e8100d029a5ee9825f35e82e422.zip gdb-7946e94a55158e8100d029a5ee9825f35e82e422.tar.gz gdb-7946e94a55158e8100d029a5ee9825f35e82e422.tar.bz2 |
* archures.c (bfd_mach_sparc_64bit_p): Define.
* elf32-sparc.c (elf32_sparc_merge_private_bfd_data): Use it.
* bfd-in2.h: Rebuilt.
Diffstat (limited to 'bfd/archures.c')
-rw-r--r-- | bfd/archures.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bfd/archures.c b/bfd/archures.c index fd34ab6..4904b62 100644 --- a/bfd/archures.c +++ b/bfd/archures.c @@ -128,6 +128,9 @@ DESCRIPTION .#define bfd_mach_sparc_v9_p(mach) \ . ((mach) >= bfd_mach_sparc_v8plus && (mach) <= bfd_mach_sparc_v9b \ . && (mach) != bfd_mach_sparc_sparclite_le) +.{* Nonzero if MACH is a 64 bit sparc architecture. *} +.#define bfd_mach_sparc_64bit_p(mach) \ +. ((mach) >= bfd_mach_sparc_v9 && (mach) != bfd_mach_sparc_v8plusb) . bfd_arch_mips, {* MIPS Rxxxx *} .#define bfd_mach_mips3000 3000 .#define bfd_mach_mips3900 3900 |