summaryrefslogtreecommitdiff
path: root/binutils/prdbg.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2004-06-15 01:19:13 +0000
committerAlan Modra <amodra@gmail.com>2004-06-15 01:19:13 +0000
commit135dfb4a65d79b85be0c7d869fd131ee45203192 (patch)
tree084c9f504e2a73bcd7df787151af2064f51a7a8a /binutils/prdbg.c
parent587aac4eafdba408b9043477548474aa05c377cf (diff)
downloadbinutils-gdb-135dfb4a65d79b85be0c7d869fd131ee45203192.tar.gz
* objcopy.c (copy_section): Use bfd_get_section_size instead of
_raw_size or bfd_get_section_size_before_reloc. Don't set reloc_done. (compare_section_lma): Likewise. * addr2line.c (find_address_in_section): Likewise. * coffgrok.c (do_sections_p1): Likewise. * dlltool.c (scan_drectve_symbols): Likewise. * nlmconv.c (main): Likewise. (copy_sections): Likewise. (powerpc_mangle_relocs): Likewise. * objdump.c (disassemble_section): Likewise. * prdbg.c (find_address_in_section): Likewise. * size.c (berkeley_sum): Likewise. * srconv.c (wr_ob): Likewise. * strings.c (strings_a_section): Likewise.
Diffstat (limited to 'binutils/prdbg.c')
-rw-r--r--binutils/prdbg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/binutils/prdbg.c b/binutils/prdbg.c
index 5b6b0479a8e..4b412e4c620 100644
--- a/binutils/prdbg.c
+++ b/binutils/prdbg.c
@@ -1,5 +1,5 @@
/* prdbg.c -- Print out generic debugging information.
- Copyright 1995, 1996, 2002, 2003 Free Software Foundation, Inc.
+ Copyright 1995, 1996, 2002, 2003, 2004 Free Software Foundation, Inc.
Written by Ian Lance Taylor <ian@cygnus.com>.
Tags style generation written by Salvador E. Tropea <set@computer.org>.
@@ -1904,7 +1904,7 @@ find_address_in_section (bfd *abfd, asection *section, void *data)
if (pc < vma)
return;
- size = bfd_get_section_size_before_reloc (section);
+ size = bfd_get_section_size (section);
if (pc >= vma + size)
return;