diff options
author | Fred Fish <fnf@specifix.com> | 1992-04-17 02:59:43 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1992-04-17 02:59:43 +0000 |
commit | 2d6d969c616d286076df1778db0d06a64f11251a (patch) | |
tree | 1cd211eb346eef7d90fcfbbb6e2ba561138f06bd /gdb/xcoffsolib.c | |
parent | d453b386ac60cb219f5949da95cb99d1e22ad6b9 (diff) | |
download | gdb-2d6d969c616d286076df1778db0d06a64f11251a.zip gdb-2d6d969c616d286076df1778db0d06a64f11251a.tar.gz gdb-2d6d969c616d286076df1778db0d06a64f11251a.tar.bz2 |
Fix to dwarfread.c to target pointer and target long sizes, fixes for
mapped symbol file handling, and a couple of other misc small fixes.
Diffstat (limited to 'gdb/xcoffsolib.c')
-rw-r--r-- | gdb/xcoffsolib.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/xcoffsolib.c b/gdb/xcoffsolib.c index 0ad8432..4d2893f 100644 --- a/gdb/xcoffsolib.c +++ b/gdb/xcoffsolib.c @@ -77,7 +77,8 @@ solib_add (arg_string, from_tty, target) continue; } - syms_from_objfile (obj, 0, 0); + syms_from_objfile (obj, 0, 0, 0); + new_symfile_objfile (obj, 0, 0); vmap_symtab (vp, 0, 0); printf ("Done.\n"); loaded = vp->loaded = 1; |