aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/solib.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index e7c2872..7e6a02d 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+Wed Jul 19 12:50:16 2000 Andrew Cagney <cagney@b1.cygnus.com>
+
+ * solib.c (elf_locate_base, info_sharedlibrary_command): Rename
+ bfd_elf_get_arch_size to bfd_get_arch_size.
+
Tue Jul 18 17:13:01 2000 Andrew Cagney <cagney@b1.cygnus.com>
From Richard Henderson <rth@cygnus.com>:
diff --git a/gdb/solib.c b/gdb/solib.c
index 080962e..d5afd5a 100644
--- a/gdb/solib.c
+++ b/gdb/solib.c
@@ -714,7 +714,7 @@ elf_locate_base ()
For mips elf we look for DT_MIPS_RLD_MAP, mips elf apparently has
no DT_DEBUG entries. */
- arch_size = bfd_elf_get_arch_size (exec_bfd);
+ arch_size = bfd_get_arch_size (exec_bfd);
if (arch_size == -1) /* failure */
return 0;
@@ -1491,7 +1491,7 @@ info_sharedlibrary_command (ignore, from_tty)
return;
}
- arch_size = bfd_elf_get_arch_size (exec_bfd);
+ arch_size = bfd_get_arch_size (exec_bfd);
/* Default to 32-bit in case of failure (non-elf). */
if (arch_size == 32 || arch_size == -1)
{