diff options
author | Per Bothner <per@bothner.com> | 1991-12-23 23:16:58 +0000 |
---|---|---|
committer | Per Bothner <per@bothner.com> | 1991-12-23 23:16:58 +0000 |
commit | 7e258d18e0112304099fbefbe910a53659b98a3d (patch) | |
tree | a1dd070cd40879a617d8cbddcf0417abf882a6af /gdb/symtab.c | |
parent | 3e60a6b1d3064f0e08369dbe0bae64d632fcb773 (diff) | |
download | gdb-7e258d18e0112304099fbefbe910a53659b98a3d.zip gdb-7e258d18e0112304099fbefbe910a53659b98a3d.tar.gz gdb-7e258d18e0112304099fbefbe910a53659b98a3d.tar.bz2 |
Oodles of changes. The most important is adding support for stabs
encapsulated in mips ecoff. See ChangeLog for the gory details.
Diffstat (limited to 'gdb/symtab.c')
-rw-r--r-- | gdb/symtab.c | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/gdb/symtab.c b/gdb/symtab.c index cd5c289..c05a9e1 100644 --- a/gdb/symtab.c +++ b/gdb/symtab.c @@ -218,7 +218,7 @@ check_stub_type(type) sym = lookup_symbol (name, 0, STRUCT_NAMESPACE, 0, (struct symtab **)NULL); if (sym) - bcopy (SYMBOL_TYPE(sym), type, sizeof (struct type)); + memcpy (type, SYMBOL_TYPE(sym), sizeof (struct type)); } } @@ -636,6 +636,7 @@ check_stub_method (type, i, j) TYPE_DOMAIN_TYPE (mtype) = type; TYPE_ARG_TYPES (mtype) = argtypes; TYPE_FLAGS (mtype) &= ~TYPE_FLAG_STUB; + TYPE_FN_FIELD_STUB (f, j) = 0; } /* Given a type TYPE, return a type of functions that return that type. @@ -1704,7 +1705,7 @@ operator_chars (p, end) */ int -find_methods(t, name, physnames, sym_arr) +find_methods (t, name, physnames, sym_arr) struct type *t; char *name; char **physnames; @@ -1756,7 +1757,7 @@ find_methods(t, name, physnames, sym_arr) --field_counter) { char *phys_name; - if (TYPE_FLAGS (TYPE_FN_FIELD_TYPE (f, field_counter)) & TYPE_FLAG_STUB) + if (TYPE_FN_FIELD_STUB (f, field_counter)) check_stub_method (t, method_counter, field_counter); phys_name = TYPE_FN_FIELD_PHYSNAME (f, field_counter); physnames[i1] = (char*) alloca (strlen (phys_name) + 1); @@ -2685,12 +2686,7 @@ init_type (code, length, uns, name) /* C++ fancies. */ if (code == TYPE_CODE_STRUCT || code == TYPE_CODE_UNION) - { - TYPE_CPLUS_SPECIFIC (type) - = (struct cplus_struct_type *) xmalloc (sizeof (struct cplus_struct_type)); - TYPE_NFN_FIELDS (type) = 0; - TYPE_N_BASECLASSES (type) = 0; - } + TYPE_CPLUS_SPECIFIC(type) = &cplus_struct_default; return type; } |