+Fri Oct 4 00:35:56 1991 John Gilmore (gnu at cygnus.com)
+
+ * coffread.c, dbxread.c, symfile.c, symmisc.c, symtab.h: Remove
+ vestiges of typevectors, which were for symsegs and are no longer
+ used. (From a question by Eliot Dresselhaus
+ <dresselh@RFT30.nas.nasa.gov>).
+
Thu Oct 3 09:33:26 1991 John Gilmore (gnu at cygnus.com)
* dbxread.c, coffread.c: static-ize functions that were
translated through the type_translations hash table to get
the index into the type vector.) */
-static struct typevector *type_vector;
+static struct type **type_vector;
/* Number of elements allocated for type_vector currently. */
while (index >= type_vector_length)
{
type_vector_length *= 2;
- type_vector = (struct typevector *)
+ type_vector = (struct type **)
xrealloc (type_vector,
- (sizeof (struct typevector)
- + type_vector_length * sizeof (struct type *)));
- bzero (&type_vector->type[type_vector_length / 2],
+ (type_vector_length * sizeof (struct type *)));
+ bzero (&type_vector[type_vector_length / 2],
type_vector_length * sizeof (struct type *) / 2);
}
- return &type_vector->type[index];
+ return &type_vector[index];
}
else
{
new_object_header_files ();
type_vector_length = 160;
- type_vector = (struct typevector *)
- xmalloc (sizeof (struct typevector)
- + type_vector_length * sizeof (struct type *));
- bzero (type_vector->type, type_vector_length * sizeof (struct type *));
+ type_vector = (struct type **)
+ xmalloc (type_vector_length * sizeof (struct type *));
+ bzero (type_vector, type_vector_length * sizeof (struct type *));
/* Initialize the list of sub source files with one entry
for this file (the top-level source file). */
symtab->linetable = (struct linetable *)
xrealloc (lv, (sizeof (struct linetable)
+ lv->nitems * sizeof (struct linetable_entry)));
- type_vector->length = type_vector_length;
- symtab->typevector = type_vector;
symtab->dirname = subfile->dirname;
symtab->free_code = free_linetable;
symtab->free_ptr = 0;
- if (subfile->next == 0)
- symtab->free_ptr = (char *) type_vector;
/* There should never already be a symtab for this name, since
any prev dups have been removed when the psymtab was read in.
free (subfile);
}
+ free ((char *) type_vector);
type_vector = 0;
type_vector_length = -1;
line_vector = 0;