aboutsummaryrefslogtreecommitdiff
path: root/gprof/corefile.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2004-06-15 01:11:43 +0000
committerAlan Modra <amodra@gmail.com>2004-06-15 01:11:43 +0000
commit67cf9bc5a113105ad18f58b827d6f5b132ad618f (patch)
treea999f0f07f98539ce125d275cb34422962edc766 /gprof/corefile.c
parentdcb74f961ab8068d8768932cedba58ab0d95b1f2 (diff)
downloadgdb-67cf9bc5a113105ad18f58b827d6f5b132ad618f.zip
gdb-67cf9bc5a113105ad18f58b827d6f5b132ad618f.tar.gz
gdb-67cf9bc5a113105ad18f58b827d6f5b132ad618f.tar.bz2
* corefile.c (core_init): Use bfd_get_section_size
instead of bfd_get_section_size_before_reloc or _raw_size. * symtab.c (symtab_finalize): Likewise.
Diffstat (limited to 'gprof/corefile.c')
-rw-r--r--gprof/corefile.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gprof/corefile.c b/gprof/corefile.c
index f987c72..1619ffa 100644
--- a/gprof/corefile.c
+++ b/gprof/corefile.c
@@ -1,6 +1,6 @@
/* corefile.c
- Copyright 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
+ Copyright 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
This file is part of GNU Binutils.
@@ -216,17 +216,17 @@ core_init (const char *aout_name)
void
core_get_text_space (bfd *cbfd)
{
- core_text_space = (PTR) malloc ((unsigned int) core_text_sect->_raw_size);
+ core_text_space = malloc (bfd_get_section_size (core_text_sect));
if (!core_text_space)
{
fprintf (stderr, _("%s: ran out room for %lu bytes of text space\n"),
- whoami, (unsigned long) core_text_sect->_raw_size);
+ whoami, (unsigned long) bfd_get_section_size (core_text_sect));
done (1);
}
if (!bfd_get_section_contents (cbfd, core_text_sect, core_text_space,
- (bfd_vma) 0, core_text_sect->_raw_size))
+ 0, bfd_get_section_size (core_text_sect)))
{
bfd_perror ("bfd_get_section_contents");
free (core_text_space);
@@ -613,7 +613,7 @@ core_create_line_syms ()
ltab.len = 0;
prev_line_num = 0;
- vma_high = core_text_sect->vma + core_text_sect->_raw_size;
+ vma_high = core_text_sect->vma + bfd_get_section_size (core_text_sect);
for (vma = core_text_sect->vma; vma < vma_high; vma += min_insn_size)
{
unsigned int len;