aboutsummaryrefslogtreecommitdiff
path: root/bfd/riscix.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2010-08-25 07:02:40 +0000
committerAlan Modra <amodra@gmail.com>2010-08-25 07:02:40 +0000
commit30d10e9ee899e608cf3a9f025b32122be8202141 (patch)
treeafd0796d21e5bbfec16edea2dead03dfff557f18 /bfd/riscix.c
parent8d06853ec69b274b573df0ac2f5c00e2aa8d0daa (diff)
downloadgdb-30d10e9ee899e608cf3a9f025b32122be8202141.zip
gdb-30d10e9ee899e608cf3a9f025b32122be8202141.tar.gz
gdb-30d10e9ee899e608cf3a9f025b32122be8202141.tar.bz2
* aout-arm.c (MY(bfd_reloc_type_lookup)): Use bfd_arch_bits_per_address.
* aout-ns32k.c (MY(bfd_reloc_type_lookup)): Likewise. * aoutx.h (NAME(aout,reloc_type_lookup)): Likewise. * coff-arm.c (coff_arm_reloc_type_lookup): Likewise. * elf-hppa.h (elf_hppa_reloc_final_type): Likewise. * reloc.c (bfd_default_reloc_type_lookup): Likewise. * riscix.c (riscix_reloc_type_lookup): Likewise.
Diffstat (limited to 'bfd/riscix.c')
-rw-r--r--bfd/riscix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/riscix.c b/bfd/riscix.c
index 6ca26f6..0d07d01 100644
--- a/bfd/riscix.c
+++ b/bfd/riscix.c
@@ -1,6 +1,6 @@
/* BFD back-end for RISC iX (Acorn, arm) binaries.
Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2004,
- 2005, 2007 Free Software Foundation, Inc.
+ 2005, 2007, 2010 Free Software Foundation, Inc.
Contributed by Richard Earnshaw (rwe@pegasus.esprit.ec.org)
This file is part of BFD, the Binary File Descriptor library.
@@ -254,7 +254,7 @@ riscix_reloc_type_lookup (bfd *abfd, bfd_reloc_code_real_type code)
{
#define ASTD(i,j) case i: return &riscix_std_reloc_howto[j]
if (code == BFD_RELOC_CTOR)
- switch (bfd_get_arch_info (abfd)->bits_per_address)
+ switch (bfd_arch_bits_per_address (abfd))
{
case 32:
code = BFD_RELOC_32;