* objcopy.c (copy_section): Use bfd_get_section_size instead of
[deliverable/binutils-gdb.git] / binutils / prdbg.c
index 5b6b0479a8e74d2990543fdf9e62074751c81442..4b412e4c620359a327ac6355a3e0dd9529465cd2 100644 (file)
@@ -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;
 
This page took 0.023277 seconds and 4 git commands to generate.