diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1994-09-14 22:45:49 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1994-09-14 22:45:49 +0000 |
commit | f69ecb9c9abcd89d0a69e2bf309b01eb2eff7618 (patch) | |
tree | 645baf263476b98bd2b50f48797baaea189055a7 /gdb/xcoffread.c | |
parent | 809ee7e0365ed037cbb26ca3d9cc44431bb0f4b1 (diff) | |
download | gdb-f69ecb9c9abcd89d0a69e2bf309b01eb2eff7618.zip gdb-f69ecb9c9abcd89d0a69e2bf309b01eb2eff7618.tar.gz gdb-f69ecb9c9abcd89d0a69e2bf309b01eb2eff7618.tar.bz2 |
* xcoffread.c (read_xcoff_symtab): Fix obsolete comment about
mst_solib_trampoline.
* f-valprint.c (f_val_print): Change cast of valaddr from
CORE_ADDR * to char **, since that is how it is used.
* dbxread.c (read_dbx_dynamic_symtab): Save copy of symbol names
using obsavestring, and pass that to prim_record_minimal_symbol.
Having the objfile point to bfd_asymbol_name directly doesn't work
if we save and restore a mapped symbol file.
Diffstat (limited to 'gdb/xcoffread.c')
-rw-r--r-- | gdb/xcoffread.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/gdb/xcoffread.c b/gdb/xcoffread.c index a40aa8f..7a0f4c5 100644 --- a/gdb/xcoffread.c +++ b/gdb/xcoffread.c @@ -1373,9 +1373,12 @@ function_entry_point: breakpoints, using malloc, etc). On the other side, this is consistient with gdb's behaviour on a SUN platform. */ - /* Trying to prefer *real* function entry over its trampoline, - by assigning `mst_solib_trampoline' type to trampoline entries - fails. Gdb treats those entries as chars. FIXME. */ + /* FIXME: I think this code is using "<trampoline>" instead of + the real name because there didn't used to be a way to prefer + mst_text symbols over mst_solib_trampoline symbols (in fact, + it was using mst_unknown because mst_solib_trampoline didn't + exist yet). Using the real name would cause better output + from print_address. */ /* Recording this entry is necessary. Single stepping relies on this vector to get an idea about function address boundaries. */ @@ -1386,7 +1389,7 @@ function_entry_point: #else /* record trampoline code entries as mst_solib_trampoline symbol. - When we lookup mst symbols, we will choose mst_text over + When we lookup minimal symbols, we will choose mst_text over mst_solib_trampoline. */ RECORD_MINIMAL_SYMBOL (cs->c_name, cs->c_value, |