summaryrefslogtreecommitdiff
path: root/gdb/stabsread.c
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@gnat.com>2003-12-05 00:45:39 +0000
committerJoel Brobecker <brobecker@gnat.com>2003-12-05 00:45:39 +0000
commit568118234c2cd4c3af6636dcebdd9f7bf7eb195e (patch)
treebbf5612b82f6a5d899c0c4932d623d1995c41b07 /gdb/stabsread.c
parent0a90884b4eb82f73b19b6699015c3658fd645227 (diff)
downloadgdb-568118234c2cd4c3af6636dcebdd9f7bf7eb195e.tar.gz
* stabsread.c (read_type): Save a reference to types that are defined
as cross references to other types.
Diffstat (limited to 'gdb/stabsread.c')
-rw-r--r--gdb/stabsread.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/stabsread.c b/gdb/stabsread.c
index 14b4b45eeb0..2567b468ffe 100644
--- a/gdb/stabsread.c
+++ b/gdb/stabsread.c
@@ -1564,11 +1564,9 @@ again:
*pp = from + 1;
}
- /* Now check to see whether the type has already been
- declared. This was written for arrays of cross-referenced
- types before we had TYPE_CODE_TARGET_STUBBED, so I'm pretty
- sure it is not necessary anymore. But it might be a good
- idea, to save a little memory. */
+ /* If this type has already been declared, then reuse the same
+ type, rather than allocating a new one. This saves some
+ memory. */
for (ppt = file_symbols; ppt; ppt = ppt->next)
for (i = 0; i < ppt->nsyms; i++)
@@ -1582,6 +1580,8 @@ again:
{
obstack_free (&objfile->type_obstack, type_name);
type = SYMBOL_TYPE (sym);
+ if (typenums[0] != -1)
+ *dbx_lookup_type (typenums) = type;
return type;
}
}