diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-10-23 16:18:09 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-10-23 16:18:09 +0000 |
commit | 0a6ddd08223c066a91c9e70e863cb2a59ebc1dff (patch) | |
tree | bbc83f562118d3b6d6c1fe2a4a786f3f9ac21a4b /gdb/somread.c | |
parent | 384ee23f420548428e348baa10bb9bdb697a1f1d (diff) | |
download | gdb-0a6ddd08223c066a91c9e70e863cb2a59ebc1dff.zip gdb-0a6ddd08223c066a91c9e70e863cb2a59ebc1dff.tar.gz gdb-0a6ddd08223c066a91c9e70e863cb2a59ebc1dff.tar.bz2 |
2004-10-23 Andrew Cagney <cagney@gnu.org>
* objfiles.h (struct objfile): Rename obj_private to
deprecated_obj_private, sym_private to deprecated_sym_private, and
sym_stab_info to deprecated_sym_stab_info.
* gdb-stabs.h: Update.
* elfread.c: Update.
* dbxread.c: Update.
* coffread.c: Update.
* xcoffread.c: Update.
* symfile.c: Update.
* somread.c: Update.
* nlmread.c: Update.
* mdebugread.c: Update.
* hpread.c: Update.
* coffread.c: Update.
Diffstat (limited to 'gdb/somread.c')
-rw-r--r-- | gdb/somread.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/somread.c b/gdb/somread.c index 560eb88..b6f3004 100644 --- a/gdb/somread.c +++ b/gdb/somread.c @@ -378,7 +378,7 @@ som_symfile_read (struct objfile *objfile, int mainline) hpread_build_psymtabs (objfile, mainline); /* Force hppa-tdep.c to re-read the unwind descriptors. */ - objfile->obj_private = NULL; + objfile->deprecated_obj_private = NULL; } /* Initialize anything that needs initializing when a completely new symbol @@ -402,9 +402,9 @@ som_new_init (struct objfile *ignore) static void som_symfile_finish (struct objfile *objfile) { - if (objfile->sym_stab_info != NULL) + if (objfile->deprecated_sym_stab_info != NULL) { - xfree (objfile->sym_stab_info); + xfree (objfile->deprecated_sym_stab_info); } hpread_symfile_finish (objfile); } |