summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElena Zannoni <ezannoni@kwikemart.cygnus.com>2004-02-10 18:22:02 +0000
committerElena Zannoni <ezannoni@kwikemart.cygnus.com>2004-02-10 18:22:02 +0000
commit2b4742650ca8d166e454a5bcfb8dc887927f8171 (patch)
tree2ed8933b381b229aba5979e8c934f1021a8ee801
parentd656111bfe05e96b41d78c5cf641cf764aca3ac8 (diff)
downloadgdb-2b4742650ca8d166e454a5bcfb8dc887927f8171.tar.gz
2004-02-10 Elena Zannoni <ezannoni@redhat.com>
* objfiles.h (struct objfile): Remove unused fields auxf1 and auxf2. Add comments about some other rarely used fields.
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/objfiles.h7
2 files changed, 9 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index fc6961febfa..6feb91b1c21 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2004-02-10 Elena Zannoni <ezannoni@redhat.com>
+
+ * objfiles.h (struct objfile): Remove unused fields auxf1 and
+ auxf2. Add comments about some other rarely used fields.
+
2004-02-10 Andrew Cagney <cagney@redhat.com>
* Makefile.in (init.c): Fix script removing duplicates. Problem
diff --git a/gdb/objfiles.h b/gdb/objfiles.h
index 1454fbd92d9..ce40121cea6 100644
--- a/gdb/objfiles.h
+++ b/gdb/objfiles.h
@@ -424,14 +424,15 @@ struct objfile
struct obj_section
*sections, *sections_end;
- /* two auxiliary fields, used to hold the fp of separate symbol files */
- FILE *auxf1, *auxf2;
-
/* Imported symbols */
+ /* FIXME: ezannoni 2004-02-10: This is just SOM (HP) specific (see
+ somread.c). It should not pollute generic objfiles. */
ImportEntry *import_list;
int import_list_size;
/* Exported symbols */
+ /* FIXME: ezannoni 2004-02-10: This is just SOM (HP) specific (see
+ somread.c). It should not pollute generic objfiles. */
ExportEntry *export_list;
int export_list_size;