summaryrefslogtreecommitdiff
path: root/gprof/corefile.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2005-04-14 10:33:55 +0000
committerAlan Modra <amodra@bigpond.net.au>2005-04-14 10:33:55 +0000
commit0eeffc7f3d1f842abc42c598c9fd694daf1c63c7 (patch)
tree4c93ccdec5cd2959c049f0df014e2d246ac85dd9 /gprof/corefile.c
parent6235759bbcc1e132a276a1fd0347d8f44cce6599 (diff)
downloadbinutils-redhat-0eeffc7f3d1f842abc42c598c9fd694daf1c63c7.tar.gz
* corefile.c (core_init): Call bfd_get_synthetic_symtab.
Diffstat (limited to 'gprof/corefile.c')
-rw-r--r--gprof/corefile.c22
1 files changed, 21 insertions, 1 deletions
diff --git a/gprof/corefile.c b/gprof/corefile.c
index bd594f5a23..c06f7d4c75 100644
--- a/gprof/corefile.c
+++ b/gprof/corefile.c
@@ -1,6 +1,6 @@
/* corefile.c
- Copyright 1999, 2000, 2001, 2002, 2003, 2004
+ Copyright 1999, 2000, 2001, 2002, 2003, 2004, 2005
Free Software Foundation, Inc.
This file is part of GNU Binutils.
@@ -142,6 +142,9 @@ void
core_init (const char *aout_name)
{
int core_sym_bytes;
+ asymbol *synthsyms;
+ long synth_count;
+
core_bfd = bfd_openr (aout_name, 0);
if (!core_bfd)
@@ -190,6 +193,23 @@ core_init (const char *aout_name)
done (1);
}
+ synth_count = bfd_get_synthetic_symtab (core_bfd, core_num_syms, core_syms,
+ 0, NULL, &synthsyms);
+ if (synth_count > 0)
+ {
+ asymbol **symp;
+ long new_size;
+ long i;
+
+ new_size = (core_num_syms + synth_count + 1) * sizeof (*core_syms);
+ core_syms = xrealloc (core_syms, new_size);
+ symp = core_syms + core_num_syms;
+ core_num_syms += synth_count;
+ for (i = 0; i < synth_count; i++)
+ *symp++ = synthsyms + i;
+ *symp = 0;
+ }
+
min_insn_size = 1;
offset_to_code = 0;