diff options
author | Tom Tromey <tromey@redhat.com> | 2008-08-18 19:44:49 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2008-08-18 19:44:49 +0000 |
commit | f98dfd4b46ff7c68b479181714832b4c5fced87e (patch) | |
tree | 71f22509b59c46d2508086ef19b5a4043c833f1b /gdb/objfiles.c | |
parent | d87ecdfba2fcd75ef418cc93a6d966d67b7e9334 (diff) | |
download | gdb-f98dfd4b46ff7c68b479181714832b4c5fced87e.zip gdb-f98dfd4b46ff7c68b479181714832b4c5fced87e.tar.gz gdb-f98dfd4b46ff7c68b479181714832b4c5fced87e.tar.bz2 |
* symfile.c (reread_symbols): Update.
* solib-sunos.c (allocate_rt_common_objfile): Update.
* objfiles.c (allocate_objfile): Update.
* objfiles.h (struct objfile) <md, mmfd, deprecated_obj_private>:
Remove.
Diffstat (limited to 'gdb/objfiles.c')
-rw-r--r-- | gdb/objfiles.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gdb/objfiles.c b/gdb/objfiles.c index 68cec1b..2969a8a 100644 --- a/gdb/objfiles.c +++ b/gdb/objfiles.c @@ -163,7 +163,6 @@ allocate_objfile (bfd *abfd, int flags) { objfile = (struct objfile *) xmalloc (sizeof (struct objfile)); memset (objfile, 0, sizeof (struct objfile)); - objfile->md = NULL; objfile->psymbol_cache = bcache_xmalloc (); objfile->macro_cache = bcache_xmalloc (); /* We could use obstack_specify_allocation here instead, but |